Check documentation for the latest version of dhtmlxSuite onBeforeRender DHTMLX Docs

onBeforeRender

fires before repainting the list

boolean onBeforeRender();
booleantrue - to trigger the default action, false - to block it

Example

myList.attachEvent("onBeforeRender", function(){
     // your code here
});

Details

The event is blockable, returning false will block the default action.

Back to top