filterApply

fires when a chosen filter is applied to Pivot

void filterApply(string field,object settings){ ... };

Parameters

fieldstringthe name of the field
settingsobjectan object with filter settings

Example

pivot.events.on("filterApply",function(field, settings){
    // your code here
});

Related samples

Details

The settings object contains two attributes:

Back to top