Fixed #5210 - DataTable: resizableColumns and paginator bug
parent
6df07dfe1e
commit
413efbb2f4
|
@ -87,6 +87,7 @@
|
|||
:filtersStore="filters"
|
||||
:filterDisplay="filterDisplay"
|
||||
:filterInputProps="filterInputProps"
|
||||
:first="d_first"
|
||||
@column-click="onColumnHeaderClick($event)"
|
||||
@column-mousedown="onColumnHeaderMouseDown($event)"
|
||||
@filter-change="onFilterChange"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue