Fixed #5210 - DataTable: resizableColumns and paginator bug

pull/5456/head
tugcekucukoglu 2024-03-19 15:14:51 +03:00
parent 6df07dfe1e
commit 413efbb2f4
2 changed files with 6 additions and 0 deletions

View File

@ -87,6 +87,7 @@
:filtersStore="filters"
:filterDisplay="filterDisplay"
:filterInputProps="filterInputProps"
:first="d_first"
@column-click="onColumnHeaderClick($event)"
@column-mousedown="onColumnHeaderMouseDown($event)"
@filter-change="onFilterChange"

View File

@ -29,6 +29,7 @@
:filterDisplay="filterDisplay"
:filtersStore="filtersStore"
:filterInputProps="filterInputProps"
:first="first"
@filter-change="$emit('filter-change', $event)"
@filter-apply="$emit('filter-apply')"
@operator-change="$emit('operator-change', $event)"
@ -223,6 +224,10 @@ export default {
type: Boolean,
default: false
},
first: {
type: Number,
default: 0
},
filterInputProps: {
type: null,
default: null