Wijmo UI for the Web
showFilter Option
wijmo.grid.wijgrid Namespace > options type : showFilter Option

Default value: false

A value indicating whether the filter row is visible. Filter row is used to display column filtering interface.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijgrid("option", "showFilter");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijgrid("option", "showFilter", newValue);
        
});
var showFilter : boolean;
Example
// Set showFilter to true to view the filter row.
$("#element").wijgrid({ showFilter: true });
See Also

Reference

options type
wijgrid jQuery Widget