Check documentation for the latest version of dhtmlxSuite unload DHTMLX Docs

unload

destructor. Unloads dhtmlXColorPicker instance and clears memory

void unload();

Example

var myColorPicker = new dhtmlXColorPicker(...);
 // unloading
myColorPicker.unload();
myColorPicker = null;

Back to top