2019-06-27 21:17:21 +00:00
|
|
|
<template>
|
|
|
|
<div class="p-datatable p-component">
|
|
|
|
<slot></slot>
|
|
|
|
<div class="p-datatable-wrapper">
|
2019-06-29 12:27:35 +00:00
|
|
|
<div class="p-datatable-header" v-if="$scopedSlots.header">
|
2019-06-28 14:40:32 +00:00
|
|
|
<slot name="header"></slot>
|
|
|
|
</div>
|
2019-06-29 11:29:19 +00:00
|
|
|
<DTPaginator v-if="paginatorTop" :rows="rows" :first="first" :totalRecords="totalRecordsLength" :pageLinkSize="pageLinkSize" :template="paginatorTemplate" :rowsPerPageOptions="rowsPerPageOptions"
|
2019-06-29 12:27:35 +00:00
|
|
|
:currentPageReportTemplate="currentPageReportTemplate" class="p-paginator-top" @page="onPage($event)" :alwaysShow="alwaysShowPaginator">
|
2019-06-29 11:29:19 +00:00
|
|
|
<template #left v-if="$scopedSlots.paginatorLeft">
|
|
|
|
<slot name="paginatorLeft"></slot>
|
|
|
|
</template>
|
|
|
|
<template #right v-if="$scopedSlots.paginatorRight">
|
|
|
|
<slot name="paginatorRight"></slot>
|
|
|
|
</template>
|
|
|
|
</DTPaginator>
|
2019-06-27 21:17:21 +00:00
|
|
|
<table>
|
|
|
|
<thead class="p-datatable-thead">
|
|
|
|
<tr>
|
2019-07-01 13:50:55 +00:00
|
|
|
<th v-for="(col,i) of columns" :key="col.columnKey||col.field||i" :style="col.headerStyle" :class="getColumnHeaderClass(col)" @click="onColumnHeaderClick($event, col)">
|
2019-07-02 10:46:06 +00:00
|
|
|
<ColumnSlot :column="col" type="header" v-if="col.$scopedSlots.header" />
|
2019-06-27 21:17:21 +00:00
|
|
|
<span class="p-column-title" v-if="col.header">{{col.header}}</span>
|
2019-07-01 13:50:55 +00:00
|
|
|
<span v-if="col.sortable" :class="getSortableColumnIcon(col)"></span>
|
2019-06-27 21:17:21 +00:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2019-07-02 10:46:06 +00:00
|
|
|
<tfoot class="p-datatable-tfoot" v-if="hasFooter">
|
|
|
|
<tr>
|
|
|
|
<td v-for="(col,i) of columns" :key="col.columnKey||col.field||i" :style="col.footerStyle" :class="col.footerClass">
|
|
|
|
<ColumnSlot :column="col" type="footer" v-if="col.$scopedSlots.footer" />
|
|
|
|
{{col.footer}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
2019-06-27 21:17:21 +00:00
|
|
|
<tbody class="p-datatable-tbody">
|
2019-06-29 11:47:14 +00:00
|
|
|
<template v-if="!empty">
|
|
|
|
<tr class="p-datatable-row" v-for="(rowData, index) of data" :key="getRowKey(rowData, index)">
|
|
|
|
<td v-for="(col,i) of columns" :key="col.columnKey||col.field||i" :style="col.bodyStyle" :class="col.bodyClass">
|
|
|
|
<ColumnSlot :data="rowData" :column="col" type="body" v-if="col.$scopedSlots.body" />
|
|
|
|
<template v-else>{{resolveFieldData(rowData, col.field)}}</template>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
|
|
|
<tr v-else class="p-datatable-emptymessage">
|
|
|
|
<td :colspan="columns.length">
|
|
|
|
<slot name="empty"></slot>
|
2019-06-27 21:17:21 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-06-29 11:29:19 +00:00
|
|
|
<DTPaginator v-if="paginatorBottom" :rows="rows" :first="first" :totalRecords="totalRecordsLength" :pageLinkSize="pageLinkSize" :template="paginatorTemplate" :rowsPerPageOptions="rowsPerPageOptions"
|
2019-06-29 12:27:35 +00:00
|
|
|
:currentPageReportTemplate="currentPageReportTemplate" class="p-paginator-bottom" @page="onPage($event)" :alwaysShow="alwaysShowPaginator">
|
2019-06-29 11:29:19 +00:00
|
|
|
<template #left v-if="$scopedSlots.paginatorLeft">
|
|
|
|
<slot name="paginatorLeft"></slot>
|
|
|
|
</template>
|
|
|
|
<template #right v-if="$scopedSlots.paginatorRight">
|
|
|
|
<slot name="paginatorRight"></slot>
|
|
|
|
</template>
|
|
|
|
</DTPaginator>
|
2019-06-29 12:27:35 +00:00
|
|
|
<div class="p-datatable-footer" v-if="$scopedSlots.footer">
|
2019-06-29 11:29:19 +00:00
|
|
|
<slot name="footer"></slot>
|
|
|
|
</div>
|
2019-06-27 21:17:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import ObjectUtils from '../utils/ObjectUtils';
|
2019-07-01 13:50:55 +00:00
|
|
|
import DomHandler from '../utils/DomHandler';
|
2019-06-29 11:29:19 +00:00
|
|
|
import Paginator from '../paginator/Paginator';
|
2019-06-27 21:17:21 +00:00
|
|
|
|
2019-06-28 14:40:32 +00:00
|
|
|
const ColumnSlot = {
|
|
|
|
functional: true,
|
|
|
|
props: {
|
|
|
|
column: {
|
|
|
|
type: null,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
type: null,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render(createElement, context) {
|
|
|
|
const content = context.props.column.$scopedSlots[context.props.type]({
|
|
|
|
'data': context.props.data,
|
|
|
|
'column': context.props.column
|
|
|
|
});
|
|
|
|
return [content];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-27 21:17:21 +00:00
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
type: Array,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
dataKey: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
2019-06-29 11:29:19 +00:00
|
|
|
},
|
|
|
|
rows: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
first: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
totalRecords: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
paginator: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
paginatorPosition: {
|
|
|
|
type: String,
|
|
|
|
default: 'bottom'
|
|
|
|
},
|
|
|
|
alwaysShowPaginator: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
paginatorTemplate: {
|
|
|
|
type: String,
|
|
|
|
default: 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown'
|
|
|
|
},
|
|
|
|
pageLinkSize: {
|
|
|
|
type: Number,
|
|
|
|
default: 5
|
|
|
|
},
|
|
|
|
rowsPerPageOptions: {
|
|
|
|
type: Array,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
currentPageReportTemplate: {
|
|
|
|
type: String,
|
|
|
|
default: '({currentPage} of {totalPages})'
|
|
|
|
},
|
|
|
|
lazy: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2019-06-29 11:34:29 +00:00
|
|
|
},
|
|
|
|
loading: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
loadingIcon: {
|
|
|
|
type: String,
|
|
|
|
default: 'pi pi-spinner'
|
2019-07-01 13:50:55 +00:00
|
|
|
},
|
|
|
|
sortField: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
sortOrder: {
|
|
|
|
type: Number,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
defaultSortOrder: {
|
|
|
|
type: Number,
|
|
|
|
default: 1
|
2019-07-02 10:15:50 +00:00
|
|
|
},
|
|
|
|
multiSortMeta: {
|
|
|
|
type: Array,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
sortMode: {
|
|
|
|
type: String,
|
|
|
|
default: 'single'
|
2019-06-27 21:17:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2019-07-02 09:02:55 +00:00
|
|
|
allChildren: null,
|
2019-06-29 11:29:19 +00:00
|
|
|
d_first: this.first,
|
2019-07-01 13:50:55 +00:00
|
|
|
d_rows: this.rows,
|
|
|
|
d_sortField: this.sortField,
|
2019-07-02 10:15:50 +00:00
|
|
|
d_sortOrder: this.sortOrder,
|
|
|
|
d_multiSortMeta: this.multiSortMeta ? [...this.multiSortMeta] : []
|
2019-06-27 21:17:21 +00:00
|
|
|
};
|
|
|
|
},
|
2019-06-29 11:29:19 +00:00
|
|
|
watch: {
|
|
|
|
first(newValue) {
|
|
|
|
this.d_first = newValue;
|
|
|
|
},
|
|
|
|
rows(newValue) {
|
|
|
|
this.d_rows = newValue;
|
2019-07-01 13:50:55 +00:00
|
|
|
},
|
|
|
|
sortField(newValue) {
|
|
|
|
this.d_sortField = newValue;
|
|
|
|
},
|
|
|
|
sortOrder(newValue) {
|
|
|
|
this.d_sortOrder = newValue;
|
2019-07-02 10:15:50 +00:00
|
|
|
},
|
|
|
|
multiSortMeta(newValue) {
|
|
|
|
this.d_multiSortMeta = newValue;
|
2019-06-29 11:29:19 +00:00
|
|
|
}
|
|
|
|
},
|
2019-06-27 21:17:21 +00:00
|
|
|
mounted() {
|
2019-07-02 09:02:55 +00:00
|
|
|
this.allChildren = this.$children;
|
2019-06-27 21:17:21 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
getRowKey(rowData, index) {
|
|
|
|
return this.dataKey ? ObjectUtils.resolveFieldData(rowData, this.dataKey): index;
|
|
|
|
},
|
|
|
|
resolveFieldData(rowData, field) {
|
|
|
|
return ObjectUtils.resolveFieldData(rowData, field);
|
2019-06-29 11:29:19 +00:00
|
|
|
},
|
|
|
|
onPage(event) {
|
|
|
|
this.d_first = event.first;
|
|
|
|
this.d_rows = event.rows;
|
|
|
|
|
|
|
|
this.$emit('update:first', this.d_first);
|
|
|
|
this.$emit('update:rows', this.d_rows);
|
|
|
|
this.$emit('page', event);
|
2019-07-01 13:50:55 +00:00
|
|
|
},
|
2019-07-02 10:15:50 +00:00
|
|
|
onColumnHeaderClick(event, column) {
|
2019-07-01 13:50:55 +00:00
|
|
|
if (column.sortable) {
|
2019-07-02 10:15:50 +00:00
|
|
|
const targetNode = event.target;
|
|
|
|
const columnField = column.field || column.sortField;
|
2019-07-01 13:50:55 +00:00
|
|
|
|
2019-07-02 10:15:50 +00:00
|
|
|
if (DomHandler.hasClass(targetNode, 'p-sortable-column') || DomHandler.hasClass(targetNode, 'p-column-title')
|
|
|
|
|| DomHandler.hasClass(targetNode, 'p-sortable-column-icon') || DomHandler.hasClass(targetNode.parentElement, 'p-sortable-column-icon')) {
|
|
|
|
|
|
|
|
DomHandler.clearSelection();
|
2019-07-01 13:50:55 +00:00
|
|
|
|
|
|
|
this.d_sortOrder = (this.d_sortField === columnField) ? this.d_sortOrder * -1 : this.defaultSortOrder;
|
|
|
|
this.d_sortField = columnField;
|
2019-07-02 10:15:50 +00:00
|
|
|
|
|
|
|
if(this.sortMode === 'multiple') {
|
|
|
|
let metaKey = event.metaKey || event.ctrlKey;
|
|
|
|
if (!metaKey) {
|
|
|
|
this.d_multiSortMeta = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
this.addSortMeta({field: this.d_sortField, order: this.d_sortOrder});
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$emit('update:sortField', this.d_sortFied);
|
|
|
|
this.$emit('update:sortOrder', this.d_sortOrder);
|
|
|
|
this.$emit('update:multiSortMeta', this.d_multiSortMeta);
|
|
|
|
|
|
|
|
this.$emit('sort', {
|
|
|
|
originalEvent: event,
|
|
|
|
sortField: this.d_sortField,
|
|
|
|
sortOrder: this.d_sortOrder,
|
|
|
|
multiSortMeta: this.d_multiSortMeta
|
|
|
|
});
|
2019-07-01 13:50:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-07-02 10:15:50 +00:00
|
|
|
sortSingle(value) {
|
2019-07-02 10:46:06 +00:00
|
|
|
let data = [...value];
|
2019-07-02 10:15:50 +00:00
|
|
|
|
|
|
|
data.sort((data1, data2) => {
|
|
|
|
let value1 = ObjectUtils.resolveFieldData(data1, this.d_sortField);
|
|
|
|
let value2 = ObjectUtils.resolveFieldData(data2, this.d_sortField);
|
|
|
|
let result = null;
|
|
|
|
|
|
|
|
if (value1 == null && value2 != null)
|
|
|
|
result = -1;
|
|
|
|
else if (value1 != null && value2 == null)
|
|
|
|
result = 1;
|
|
|
|
else if (value1 == null && value2 == null)
|
|
|
|
result = 0;
|
|
|
|
else if (typeof value1 === 'string' && typeof value2 === 'string')
|
|
|
|
result = value1.localeCompare(value2, undefined, { numeric: true });
|
|
|
|
else
|
|
|
|
result = (value1 < value2) ? -1 : (value1 > value2) ? 1 : 0;
|
2019-07-01 13:50:55 +00:00
|
|
|
|
2019-07-02 10:15:50 +00:00
|
|
|
return (this.d_sortOrder * result);
|
|
|
|
});
|
2019-07-01 13:50:55 +00:00
|
|
|
|
2019-07-02 10:15:50 +00:00
|
|
|
return data;
|
|
|
|
},
|
|
|
|
sortMultiple(value) {
|
2019-07-02 10:46:06 +00:00
|
|
|
let data = [...value];
|
2019-07-02 10:15:50 +00:00
|
|
|
|
|
|
|
data.sort((data1, data2) => {
|
|
|
|
return this.multisortField(data1, data2, 0);
|
|
|
|
});
|
2019-07-01 13:50:55 +00:00
|
|
|
|
2019-07-02 10:15:50 +00:00
|
|
|
return data;
|
|
|
|
},
|
|
|
|
multisortField(data1, data2, index) {
|
|
|
|
const value1 = ObjectUtils.resolveFieldData(data1, this.d_multiSortMeta[index].field);
|
|
|
|
const value2 = ObjectUtils.resolveFieldData(data2, this.d_multiSortMeta[index].field);
|
|
|
|
let result = null;
|
2019-07-01 13:50:55 +00:00
|
|
|
|
2019-07-02 10:15:50 +00:00
|
|
|
if (typeof value1 === 'string' || value1 instanceof String) {
|
|
|
|
if (value1.localeCompare && (value1 !== value2)) {
|
|
|
|
return (this.d_multiSortMeta[index].order * value1.localeCompare(value2, undefined, { numeric: true }));
|
|
|
|
}
|
2019-07-01 13:50:55 +00:00
|
|
|
}
|
|
|
|
else {
|
2019-07-02 10:15:50 +00:00
|
|
|
result = (value1 < value2) ? -1 : 1;
|
2019-07-01 13:50:55 +00:00
|
|
|
}
|
2019-07-02 10:15:50 +00:00
|
|
|
|
|
|
|
if (value1 === value2) {
|
|
|
|
return (this.d_multiSortMeta.length - 1) > (index) ? (this.multisortField(data1, data2, index + 1)) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (this.d_multiSortMeta[index].order * result);
|
|
|
|
},
|
|
|
|
getMultiSortMetaIndex(column) {
|
|
|
|
let index = -1;
|
|
|
|
|
|
|
|
for (let i = 0; i < this.d_multiSortMeta.length; i++) {
|
|
|
|
let meta = this.d_multiSortMeta[i];
|
|
|
|
if (meta.field === (column.field || column.sortField)) {
|
|
|
|
index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return index;
|
2019-07-01 13:50:55 +00:00
|
|
|
},
|
|
|
|
getColumnHeaderClass(column) {
|
2019-07-02 10:15:50 +00:00
|
|
|
const sorted = this.sortMode === 'single' ? (this.d_sortField === (column.field || column.sortField)) : this.getMultiSortMetaIndex(column) > -1;
|
2019-07-01 13:50:55 +00:00
|
|
|
|
|
|
|
return [column.headerClass,
|
|
|
|
{'p-sortable-column': column.sortable},
|
|
|
|
{'p-highlight': sorted}
|
|
|
|
];
|
|
|
|
},
|
|
|
|
getSortableColumnIcon(column) {
|
2019-07-02 10:15:50 +00:00
|
|
|
let sorted = false;
|
|
|
|
let sortOrder = null;
|
|
|
|
|
|
|
|
if (this.sortMode === 'single') {
|
|
|
|
sorted = this.d_sortField === (column.field || column.sortField);
|
|
|
|
sortOrder = sorted ? this.d_sortOrder: 0;
|
|
|
|
}
|
|
|
|
else if (this.sortMode === 'multiple') {
|
|
|
|
let metaIndex = this.getMultiSortMetaIndex(column);
|
|
|
|
if (metaIndex > -1) {
|
|
|
|
sorted = true;
|
|
|
|
sortOrder = this.d_multiSortMeta[metaIndex].order;
|
|
|
|
}
|
|
|
|
}
|
2019-07-01 13:50:55 +00:00
|
|
|
|
|
|
|
return [
|
|
|
|
'p-sortable-column-icon pi pi-fw',
|
|
|
|
{'pi-sort': !sorted},
|
2019-07-02 10:15:50 +00:00
|
|
|
{'pi-sort-up': sorted && sortOrder > 0},
|
|
|
|
{'pi-sort-down': sorted && sortOrder < 0},
|
2019-07-01 13:50:55 +00:00
|
|
|
];
|
2019-07-02 10:15:50 +00:00
|
|
|
},
|
|
|
|
addSortMeta(meta) {
|
|
|
|
let index = -1;
|
|
|
|
for (let i = 0; i < this.d_multiSortMeta.length; i++) {
|
|
|
|
if (this.d_multiSortMeta[i].field === meta.field) {
|
|
|
|
index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(index >= 0)
|
|
|
|
this.d_multiSortMeta[index] = meta;
|
|
|
|
else
|
|
|
|
this.d_multiSortMeta.push(meta);
|
|
|
|
|
|
|
|
this.d_multiSortMeta = [...this.d_multiSortMeta];
|
2019-06-27 21:17:21 +00:00
|
|
|
}
|
2019-06-28 14:40:32 +00:00
|
|
|
},
|
2019-06-29 11:29:19 +00:00
|
|
|
computed: {
|
2019-07-02 09:02:55 +00:00
|
|
|
columns() {
|
|
|
|
if (this.allChildren) {
|
|
|
|
return this.allChildren.filter(child => child.$options._propKeys.indexOf('columnKey') !== -1);
|
|
|
|
}
|
|
|
|
return [];
|
|
|
|
},
|
2019-06-29 11:29:19 +00:00
|
|
|
data() {
|
|
|
|
if (this.value && this.value.length) {
|
|
|
|
let data = this.value;
|
|
|
|
|
2019-07-02 10:15:50 +00:00
|
|
|
if (this.sorted) {
|
|
|
|
if(this.sortMode === 'single')
|
|
|
|
data = this.sortSingle(data);
|
|
|
|
else if(this.sortMode === 'multiple')
|
|
|
|
data = this.sortMultiple(data);
|
2019-07-01 13:50:55 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 11:29:19 +00:00
|
|
|
if (this.paginator) {
|
|
|
|
const first = this.lazy ? 0 : this.d_first;
|
|
|
|
return data.slice(first, first + this.d_rows);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
totalRecordsLength() {
|
|
|
|
if (this.totalRecords)
|
|
|
|
return this.totalRecords;
|
|
|
|
else
|
|
|
|
return this.value ? this.value.length : 0;
|
|
|
|
},
|
|
|
|
empty() {
|
|
|
|
return (!this.value || this.value.length === 0);
|
|
|
|
},
|
|
|
|
paginatorTop() {
|
2019-06-29 12:27:35 +00:00
|
|
|
return this.paginator && (this.paginatorPosition !== 'bottom' || this.paginatorPosition === 'both');
|
2019-06-29 11:29:19 +00:00
|
|
|
},
|
|
|
|
paginatorBottom() {
|
2019-06-29 12:27:35 +00:00
|
|
|
return this.paginator && (this.paginatorPosition !== 'top' || this.paginatorPosition === 'both');
|
2019-07-02 10:15:50 +00:00
|
|
|
},
|
|
|
|
sorted() {
|
|
|
|
return this.d_sortField || (this.d_multiSortMeta && this.d_multiSortMeta.length > 0);
|
2019-07-02 10:46:06 +00:00
|
|
|
},
|
|
|
|
hasFooter() {
|
|
|
|
let hasFooter = false;
|
|
|
|
|
|
|
|
for (let col of this.columns) {
|
|
|
|
if (col.footer || col.$scopedSlots.footer) {
|
|
|
|
hasFooter = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hasFooter;
|
2019-06-29 11:47:14 +00:00
|
|
|
}
|
2019-06-29 11:29:19 +00:00
|
|
|
},
|
2019-06-28 14:40:32 +00:00
|
|
|
components: {
|
2019-06-29 11:29:19 +00:00
|
|
|
'ColumnSlot': ColumnSlot,
|
|
|
|
'DTPaginator': Paginator
|
2019-06-27 21:17:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.p-datatable {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-datatable-thead > tr > th,
|
|
|
|
.p-datatable .p-datatable-tbody > tr > td,
|
|
|
|
.p-datatable .p-datatable-tfoot > tr > td {
|
|
|
|
padding: .25em .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-sortable-column {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-sortable-column-icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-auto-layout > .p-datatable-wrapper {
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-auto-layout > .p-datatable-wrapper > table {
|
|
|
|
table-layout: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sections */
|
|
|
|
.p-datatable-header,
|
|
|
|
.p-datatable-footer {
|
|
|
|
padding: .25em .5em;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-header {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-footer {
|
|
|
|
border-top: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Paginator */
|
|
|
|
.p-datatable .p-paginator-top {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-paginator-bottom {
|
|
|
|
border-top: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Scrollable */
|
|
|
|
.p-datatable-scrollable-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.p-datatable-scrollable-header,
|
|
|
|
.p-datatable-scrollable-footer {
|
|
|
|
overflow: hidden;
|
|
|
|
border: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable-body {
|
|
|
|
overflow: auto;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable-body > table > .p-datatable-tbody > tr:first-child > td {
|
|
|
|
border-top: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-virtual-table {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Frozen Columns */
|
|
|
|
.p-datatable-frozen-view .p-datatable-scrollable-body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-frozen-view > .p-datatable-scrollable-body > table > .p-datatable-tbody > tr > td:last-child {
|
|
|
|
border-right: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-unfrozen-view {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Filter */
|
|
|
|
.p-column-filter {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Resizable */
|
|
|
|
.p-datatable-resizable > .p-datatable-wrapper {
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-resizable .p-datatable-thead > tr > th,
|
|
|
|
.p-datatable-resizable .p-datatable-tfoot > tr > td,
|
|
|
|
.p-datatable-resizable .p-datatable-tbody > tr > td {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-resizable .p-resizable-column {
|
|
|
|
background-clip: padding-box;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-resizable-fit .p-resizable-column:last-child .p-column-resizer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-column-resizer {
|
|
|
|
display: block;
|
|
|
|
position: absolute !important;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: .5em;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0px;
|
|
|
|
cursor:col-resize;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-column-resizer-helper {
|
|
|
|
width: 1px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Edit */
|
|
|
|
.p-datatable .p-datatable-tbody > tr > td.p-cell-editing .p-component {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reorder */
|
|
|
|
.p-datatable-reorder-indicator-up,
|
|
|
|
.p-datatable-reorder-indicator-down {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Responsive */
|
|
|
|
.p-datatable-responsive .p-datatable-tbody > tr > td .p-column-title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 40em) {
|
|
|
|
.p-datatable-responsive .p-datatable-thead > tr > th,
|
|
|
|
.p-datatable-responsive .p-datatable-tfoot > tr > td {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-responsive .p-datatable-tbody > tr > td {
|
|
|
|
text-align: left;
|
|
|
|
display: block;
|
|
|
|
border: 0 none;
|
|
|
|
width: 100% !important;
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-responsive .p-datatable-tbody > tr > td .p-column-title {
|
|
|
|
padding: .4em;
|
|
|
|
min-width: 30%;
|
|
|
|
display: inline-block;
|
|
|
|
margin: -.4em 1em -.4em -.4em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Loader */
|
|
|
|
.p-datatable-loading-overlay {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
|
|
|
|
opacity: 0.1;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-loading-content {
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
z-index: 2;
|
|
|
|
margin-top: -1em;
|
|
|
|
margin-left: -1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-datatable-loading-icon {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|