Check documentation for the latest version of dhtmlxSuite onEnable DHTMLX Docs

onEnable

fires when the container control is enabled after being disabled

void onEnable(string name);
namestringthe item id

Example

myForm.attachEvent("onEnable", function (name){
     //your code here
});

Details

the event works for nested structures only (when container is nested in a checkbox or a radio).

Back to top