Check documentation for the latest version of dhtmlxSuite unload DHTMLX Docs

unload

destructor, unloads dhtmlXDataSelector instance and clears memory

void unload();

Example

var myDataSelector = new dhtmlXDataSelector(...);
 // unloading
myDataSelector.unload();
myDataSelector = null;

Back to top