Documentation

onAfterDelete

fires after item deleting

void onAfterDelete(id id){ ... };

Parameters

ididid of item in question

Example

some.attachEvent("onAfterDelete", function(id){
    //... some code here ... 
});

Details

In case of Tree and TreeTable - event will be called only for item which is deleted, and will not be called for its childs

See also

Back to top