Filtering on large Data

How can I increase the amount of filtering? by default it only takes 1000, I want it to take the total amount of log


1 Reply

JC Joseph Christ Nithin Issack Syncfusion Team February 1, 2022 04:34 PM UTC

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. 


Loader.
Up arrow icon