2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>
|
|
|
|
Flex scroll feature makes the scrollable viewport section dynamic instead of a fixed value so that it can grow or shrink relative to the parent size of the table. Click the button below to display a maximizable Dialog where data viewport
|
|
|
|
adjusts itself according to the size changes.
|
|
|
|
</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card flex justify-content-center">
|
|
|
|
<Button label="Show" icon="pi pi-external-link" @click="dialogVisible = true" />
|
|
|
|
|
2023-12-31 14:08:33 +00:00
|
|
|
<Dialog v-model:visible="dialogVisible" header="Flex Scroll" :style="{ width: '75vw' }" maximizable modal :contentStyle="{ height: '300px' }" @show="onShow">
|
2023-02-28 08:29:30 +00:00
|
|
|
<DataTable :value="customers" scrollable scrollHeight="flex" tableStyle="min-width: 50rem">
|
|
|
|
<Column field="name" header="Name"></Column>
|
|
|
|
<Column field="country.name" header="Country"></Column>
|
|
|
|
<Column field="representative.name" header="Representative"></Column>
|
|
|
|
<Column field="company" header="Company"></Column>
|
|
|
|
</DataTable>
|
|
|
|
<template #footer>
|
|
|
|
<Button label="Ok" icon="pi pi-check" @click="dialogVisible = false" />
|
|
|
|
</template>
|
|
|
|
</Dialog>
|
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" :service="['CustomerService']" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { CustomerService } from '@/service/CustomerService';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
customers: null,
|
|
|
|
dialogVisible: false,
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
|
|
|
<Button label="Show" icon="pi pi-external-link" @click="dialogVisible = true" />
|
2023-02-28 08:29:30 +00:00
|
|
|
<Dialog v-model:visible="dialogVisible" header="Flex Scroll" :style="{ width: '75vw' }" maximizable modal :contentStyle="{ height: '300px' }">
|
|
|
|
<DataTable :value="customers" scrollable scrollHeight="flex" tableStyle="min-width: 50rem">
|
|
|
|
<Column field="name" header="Name"></Column>
|
|
|
|
<Column field="country.name" header="Country"></Column>
|
|
|
|
<Column field="representative.name" header="Representative"></Column>
|
|
|
|
<Column field="company" header="Company"></Column>
|
|
|
|
</DataTable>
|
|
|
|
<template #footer>
|
|
|
|
<Button label="Ok" icon="pi pi-check" @click="dialogVisible = false" />
|
|
|
|
</template>
|
2023-10-15 09:38:39 +00:00
|
|
|
</Dialog>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<div class="card">
|
|
|
|
<Button label="Show" icon="pi pi-external-link" @click="dialogVisible = true" />
|
|
|
|
|
|
|
|
<Dialog v-model:visible="dialogVisible" header="Flex Scroll" :style="{ width: '75vw' }" maximizable modal :contentStyle="{ height: '300px' }">
|
|
|
|
<DataTable :value="customers" scrollable scrollHeight="flex" tableStyle="min-width: 50rem">
|
|
|
|
<Column field="name" header="Name"></Column>
|
|
|
|
<Column field="country.name" header="Country"></Column>
|
|
|
|
<Column field="representative.name" header="Representative"></Column>
|
|
|
|
<Column field="company" header="Company"></Column>
|
|
|
|
</DataTable>
|
|
|
|
<template #footer>
|
|
|
|
<Button label="Ok" icon="pi pi-check" @click="dialogVisible = false" />
|
|
|
|
</template>
|
|
|
|
</Dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { CustomerService } from '@/service/CustomerService';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
customers: null,
|
|
|
|
dialogVisible: false
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
CustomerService.getCustomersMedium().then((data) => {
|
|
|
|
this.customers = data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2023-10-15 09:38:39 +00:00
|
|
|
<\/script>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<div class="card">
|
|
|
|
<Button label="Show" icon="pi pi-external-link" @click="dialogVisible = true" />
|
|
|
|
|
|
|
|
<Dialog v-model:visible="dialogVisible" header="Flex Scroll" :style="{ width: '75vw' }" maximizable modal :contentStyle="{ height: '300px' }">
|
|
|
|
<DataTable :value="customers" scrollable scrollHeight="flex" tableStyle="min-width: 50rem">
|
|
|
|
<Column field="name" header="Name"></Column>
|
|
|
|
<Column field="country.name" header="Country"></Column>
|
|
|
|
<Column field="representative.name" header="Representative"></Column>
|
|
|
|
<Column field="company" header="Company"></Column>
|
|
|
|
</DataTable>
|
|
|
|
<template #footer>
|
|
|
|
<Button label="Ok" icon="pi pi-check" @click="dialogVisible = false" />
|
|
|
|
</template>
|
|
|
|
</Dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref, onMounted } from 'vue';
|
|
|
|
import { CustomerService } from '@/service/CustomerService';
|
|
|
|
|
|
|
|
const customers = ref();
|
|
|
|
const dialogVisible = ref(false);
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
CustomerService.getCustomersMedium().then((data) => {
|
|
|
|
customers.value = data;
|
|
|
|
});
|
|
|
|
});
|
2023-10-15 09:38:39 +00:00
|
|
|
<\/script>
|
|
|
|
`,
|
2023-02-28 08:29:30 +00:00
|
|
|
data: `
|
|
|
|
{
|
|
|
|
id: 1000,
|
|
|
|
name: 'James Butt',
|
|
|
|
country: {
|
|
|
|
name: 'Algeria',
|
|
|
|
code: 'dz'
|
|
|
|
},
|
|
|
|
company: 'Benton, John B Jr',
|
|
|
|
date: '2015-09-13',
|
|
|
|
status: 'unqualified',
|
|
|
|
verified: true,
|
|
|
|
activity: 17,
|
|
|
|
representative: {
|
|
|
|
name: 'Ioni Bowcher',
|
|
|
|
image: 'ionibowcher.png'
|
|
|
|
},
|
|
|
|
balance: 70663
|
|
|
|
},
|
|
|
|
...
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
2023-12-31 14:08:33 +00:00
|
|
|
methods: {
|
|
|
|
onShow() {
|
|
|
|
CustomerService.getCustomersMedium().then((data) => {
|
|
|
|
this.customers = data;
|
|
|
|
});
|
|
|
|
}
|
2023-02-28 08:29:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|