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.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: bool returnsValue = $(".selector").wijgrid("option", "showFilter"); // Set value var newValue; // Type: bool $(".selector").wijgrid("option", "showFilter", newValue); }); |
Javascript (Specification) | |
---|---|
|
// Set showFilter to true to view the filter row. $("#element").wijgrid({ showFilter: true });