Filter Row not displayed

Hello I am trying to test the Filter row ability. I have applied some custom logic to your grid.
The problem is that there is no filter row displayed.
Please help.

Attachment: Example_ea0cfb38.rar

1 Reply

JK Jayaprakash Kamaraj Syncfusion Team May 25, 2017 11:45 AM UTC

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. 
  
 


Loader.
Up arrow icon