Check documentation for the latest version of dhtmlxSuite uncheckItem DHTMLX Docs

uncheckItem

unchecks an item (a checkbox or a radio button only)

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

Example

// for radio buttons
dhxForm.uncheckItem(name, value);
 
// for other items
dhxForm.uncheckItem(name);

Back to top