Hi Furkan,
Greetings from Syncfusion support
By default, the Excel/Checkbox filter in the Grid will
display the data from the first 1000 records to optimize performance. The other
records will be returned as result in the search option of the Filter
dialog. This is the default behavior of Grid.
You can increase the Excel filter count by modifying the filterChoiceCount
argument value in the actionBegin event when the requestType
is ‘filterchoicerequest’ as demonstrated in the below code snippet,
//
Grid’s actionBegin event function
function onActionBegin(args)
{
if
(args.requestType === "filterchoicerequest") {‘
// Filter choice count is modified
args.filterChoiceCount =
1500; //modify value here as
you want
}
}
|
API: https://ej2.syncfusion.com/angular/documentation/api/grid/#actionbegin
Regards,
Rajapandi R