Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
495
Hide filter row when loading the grid
posted

Is there a way to hide the filter row when loading the grid at first ?

So, not visible at the beginning, but must be able to set visible when clicking the settings-icon in the column and choosing 'Show Filter'...

We are setting the grid's properties from the model:

GridFiltering.Features.Add(new GridFiltering()
{
    Type = OpType.Local, 
    ColumnSettings = new List<ColumnFilteringSetting>() {  new ColumnFilteringSetting () { ColumnKey = "PdfImage", AllowFiltering = false } 

});