on(eventName: String, function: Function)
[starting from version: 2.3]
Sets a JS function for the specified event. Check out the list of events.
You can also subscribe to the events during initialization by specifying them as new Flexmonster() parameters.
pivot.on('celldoubleclick', function () { alert('The cell is double clicked'); }); //If you plan on removing some certain event handler later, //add it the following way pivot.on('cellclick', onCellClick); function onCellClick(result) { alert('The cell is clicked'); }
Open the example on JSFiddle.
offlist of events
In this guide