fires before repainting the dataview
boolean | true - to trigger the default action, false - to block it |
myDataView.attachEvent("onBeforeRender", function(){
// your code here
});
The event is blockable, returning false will block the default action.
Back to top