Hi George,
Thank you for contacting Syncfusion support.
We have analysed your code example and found that you mentioned allowfitering inatead of allowFiltering( F as UpperCase). This is the cause of issue. So, we suggest you to set allowFiltering as true in your project. Please refer to the below code example.
grid = gridSelector.ejGrid({
offline: true,
allowFiltering: true,
filterSettings: { showFilterBarStatus: true, statusBarWidth: 500 },
allowPaging: true,
pageSettings: { pageSize: 10 },
allowSorting: true,
isResponsive: true,
actionComplete: function (msg) {
if (forceRefresh && msg.requestType == "refresh") {
//Do refresh
LoadGridData();
}
if (msg.requestType != "refresh") {
LoadGridData();
}
}, |
Regards,
Jayaprakash K.