Check documentation for the latest version of dhtmlxSuite clearNote DHTMLX Docs

clearNote

removes the note block from an input or a radio button

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

Example

//for a radio button
myForm.clearNote(name,value);
 
//for other items
myForm.clearNote(name);

Back to top