Check documentation for the latest version of dhtmlxSuite onDisable DHTMLX Docs

onDisable

fires when the container is disabled after being enabled

void onDisable(string name);
namestringthe item's name

Example

myForm.attachEvent("onDisable", 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