Hello,
Currently in datagrid max limit for filter list is 250, I want to change it. How to do it in react?
I already tried with SetColumnFilterOptions on OnReady event of page, but its not working
Thanks
Prajakta Roshankhede
This client action only works with server side pagination for now.
I've attached a sample with a custom JS snippet that allows you to change a column's filter limit.
Hey @Prajakta Roshankhede,
Can you try using the client action on Grid's On Initialize event?
If that doesn't work, could you please send us your sample so we can have a better understanding on what's going on?
Thank you,
Gabriel Lundgren
Its not working, please see attached image for the same
Could you please send us your sample so we can have a better understanding on what's going on?
Hello Gabriel,
Please refer attached sample for the same,
Note: I don't want server side pagination and want to increase limit of action column filter.
Its Working, thank you so much!
Is there any way to apply directly on all column instead of single column?
You could loop through our columns.
var grid = GridAPI.GridManager.GetGridById($parameters.GridWidgetId);
var columns = grid.getColumns();if (columns) { columns.forEach(function (column) {
grid.features.filter._filter.getColumnFilter(column.provider).valueFilter.maxValues = $parameters.MaxOptions;
});}
Thanks Gabriel, really appreciate your help!