Check documentation for the latest version of dhtmlxSuite reset DHTMLX Docs

reset

resets the items of the form saved by means of the load or save methods to their initial states

void reset();

Example

myForm.reset();
//or
myForm.reset(function(id, response){
   alert("I'm reset");
});

Back to top