wijmo.filter.wijfilter Namespace > options type : sortDirection Option |
Determines the sort direction. Possible values are: "none", "ascending" and "descending". "none": no sorting. "ascending": sort from smallest to largest. "descending": sort from largest to smallest.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").wijfilter("option", "sortDirection"); // Set value var newValue; // Type: string $(".selector").wijfilter("option", "sortDirection", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [{ sortDirection: "none" }] });