Wijmo UI for the Web
dataKey Option
wijmo.filter.wijfilter Namespace > options type : dataKey Option

A value used to identify a column in a data array. Can be string if the data option contains an array of objects or an integer if the data option is an array of arrays.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  any
    returnsValue = $(".selector").wijfilter("option", "dataKey");
    
    // Set value
    var newValue; // Type:  any
    $(".selector").wijfilter("option", "dataKey", newValue);
        
});
var dataKey : any;
Example
$("#element").wijfilter({ dataKey: "ID" });
See Also

Reference

options type
wijfilter Method