onPartialRender

called when part of tree is repainted

void onPartialRender(id id,object data,string type);
ididid of item which initiated repainting
dataobjectextra data realted to repainting
typestringtype of repainting operaton

Example

some.attachEvent("onPartialRender", function(id, data, type){
    //... some code here ... 
});

Details

most common case - opening | closing of branches

Back to top