onFilterChange

fires when value is changed in a filter field on the toolbar

void onFilterChange(string name,string value);
namestringthe field's name
valuestringthe filter value

Example

$$("pivot").attachEvent("onFilterChange", function(name, value){
    // your code
})

Back to top