fieldClick

fires on clicking a field in the configuration area

void fieldClick(Event e,string id,string type){ ... };

Parameters

eEventa native event object
idstringthe id of an item
typestringthe type of a clicked field part:"selector" or "filter"

Example

pivot.events.on("fieldClick",function(e,id,type){
    // your code here
});

Related samples

Back to top