kendraio-app
kendraio-app copied to clipboard
Default grid pagination to "on" for large datasets
I just imported over 40,000 items, and added a grid view. The browser became unresponsive.
Perhaps we should default pagination to "on", if the data set is above a certain size?
Current workaround: set the pagination options in "gridOptions" before importing the data, eg...
{
"type": "grid",
"gridOptions": {
"pagination": true,
"rowSelection": "multiple"
}
}
@dahacouk suggested that this could be a user setting. So user can set their own limit where auto-pagination kicks in.