filterApply

fires when a chosen filter is applied to Pivot

void filterApply(string field,object settings);
fieldstringthe name of the field
settingsobjectan object with filter settings

Example

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

Details

The settings object contains two attributes:

Related sample:  Pivot. Events

Back to top