You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The table pagination dropdown value resets to default one when you do fitering on lazyloading dataTable. This can be replicated with latest version(1.4.2)
The text was updated successfully, but these errors were encountered:
onLazyLoad(event) {
/* In a real application, make a remote request to load data using state metadata from event
* event.first = First row offset
* event.rows = Number of rows per page
* event.sortField = Field name to sort with
* event.sortOrder = Sort order as number, 1 for asc and -1 for dec
* filters: FilterMetadata object having field as key and filter value, filter matchMode as value */
//imitate db connection over a network
setTimeout(() => {
if(this.datasource) {
this.setState({cars: this.datasource.slice(event.first, (event.first + event.rows)), rows:event.rows});
}
}, 250);
}
The table pagination dropdown value resets to default one when you do fitering on lazyloading dataTable. This can be replicated with latest version(1.4.2)
The text was updated successfully, but these errors were encountered: