Hi Enderon,
Greetings from Syncfusion support.
Based on your requirement, you want to increase the amount of filterChoiceCount instead of the default value. Your requirement can be achieved by changing the filterCoiceCount in the `actionBegin` event of the EJ2 grid.
Please refer the below code example.
function actionBegin(args) {
if (
args.requestType === 'filterchoicerequest' ||
args.requestType === 'filterSearchBegin'
) {
args.filterChoiceCount = this.pageSettings.totalRecordsCount;
}
}
|
Please get back to us for further details.
Regards,
Joseph I.