Check documentation for the latest version of dhtmlxSuite removeItem DHTMLX Docs

removeItem

removes an item

void removeItem(string name, [string value] );
namestringthe name of an item
valuestringthe value of an item (for a radio button)

Example

// for radio buttons
myForm.removeItem(name, value);
 
// for other items
myForm.removeItem(name);

Back to top