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