mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Convert to PrimeVue monorepo
This commit is contained in:
parent
970ba75b06
commit
61929eae75
4144 changed files with 59008 additions and 36177 deletions
129
apps/showcase/doc/treetable/scroll/FrozenColumnsDoc.vue
Normal file
129
apps/showcase/doc/treetable/scroll/FrozenColumnsDoc.vue
Normal file
|
@ -0,0 +1,129 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>A column can be fixed during horizontal scrolling by enabling the <i>frozen</i> property on a Column. The location is defined with the <i>alignFrozen</i> that can be <i>left</i> or <i>right</i>.</p>
|
||||
</DocSectionText>
|
||||
<DeferredDemo @load="loadDemoData">
|
||||
<div class="card">
|
||||
<TreeTable :value="nodes" scrollable scrollHeight="300px">
|
||||
<Column field="name" header="Name" expander frozen style="min-width: 250px" class="font-bold"></Column>
|
||||
<Column field="size" header="Size" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 2" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 2" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 3" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 3" style="min-width: 200px"></Column>
|
||||
</TreeTable>
|
||||
</div>
|
||||
</DeferredDemo>
|
||||
<DocSectionCode :code="code" :service="['NodeService']" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { NodeService } from '@/service/NodeService';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
nodes: null,
|
||||
code: {
|
||||
basic: `
|
||||
<TreeTable :value="nodes" scrollable scrollHeight="300px">
|
||||
<Column field="name" header="Name" expander frozen style="min-width: 250px" class="font-bold"></Column>
|
||||
<Column field="size" header="Size" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 2" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 2" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 3" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 3" style="min-width: 200px"></Column>
|
||||
</TreeTable>
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<TreeTable :value="nodes" scrollable scrollHeight="300px">
|
||||
<Column field="name" header="Name" expander frozen style="min-width: 250px" class="font-bold"></Column>
|
||||
<Column field="size" header="Size" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 2" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 2" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 3" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 3" style="min-width: 200px"></Column>
|
||||
</TreeTable>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { NodeService } from '@/service/NodeService';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
nodes: null,
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
NodeService.getTreeTableNodes().then((data) => (this.nodes = data));
|
||||
}
|
||||
}
|
||||
<\/script>
|
||||
`,
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<TreeTable :value="nodes" scrollable scrollHeight="300px">
|
||||
<Column field="name" header="Name" expander frozen style="min-width: 250px" class="font-bold"></Column>
|
||||
<Column field="size" header="Size" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 2" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 2" style="min-width: 200px"></Column>
|
||||
<Column field="type" header="Type 3" style="min-width: 200px"></Column>
|
||||
<Column field="size" header="Size 3" style="min-width: 200px"></Column>
|
||||
</TreeTable>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { NodeService } from '@/service/NodeService';
|
||||
|
||||
onMounted(() => {
|
||||
NodeService.getTreeTableNodes().then((data) => (nodes.value = data));
|
||||
});
|
||||
|
||||
const nodes = ref();
|
||||
<\/script>
|
||||
`,
|
||||
data: `
|
||||
{
|
||||
key: '0',
|
||||
label: 'Documents',
|
||||
data: 'Documents Folder',
|
||||
icon: 'pi pi-fw pi-inbox',
|
||||
children: [
|
||||
{
|
||||
key: '0-0',
|
||||
label: 'Work',
|
||||
data: 'Work Folder',
|
||||
icon: 'pi pi-fw pi-cog',
|
||||
children: [
|
||||
{ key: '0-0-0', label: 'Expenses.doc', icon: 'pi pi-fw pi-file', data: 'Expenses Document' },
|
||||
{ key: '0-0-1', label: 'Resume.doc', icon: 'pi pi-fw pi-file', data: 'Resume Document' }
|
||||
]
|
||||
},
|
||||
{
|
||||
key: '0-1',
|
||||
label: 'Home',
|
||||
data: 'Home Folder',
|
||||
icon: 'pi pi-fw pi-home',
|
||||
children: [{ key: '0-1-0', label: 'Invoices.txt', icon: 'pi pi-fw pi-file', data: 'Invoices for this month' }]
|
||||
}
|
||||
]
|
||||
},
|
||||
...
|
||||
`
|
||||
}
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
loadDemoData() {
|
||||
NodeService.getTreeTableNodes().then((data) => (this.nodes = data));
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue