jQuery.wijmo.wijgrid Namespace > options type : filtering Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.filtering = function(e, args) { }; |
Javascript (Specification) | |
---|---|
filtering = function ( e : Object, args : IFilteringEventArgs ) { }; |
// Prevents filtering by negative values $("#element").wijgrid({ filtering: function (e, args) { if (args.column.dataKey == "Price" && args.value < 0) { args.value = 0; } } });