Check documentation for the latest version of dhtmlxSuite getItemType DHTMLX Docs

getItemType

returns the type of an item

string getItemType(string name, [string value] );
namestringthe name of an item
valuestringthe value of a radio button
stringitem type

Example

//for radio buttons
var type = myForm.getItemType(name, value);
 
//for other items
var type = myForm.getItemType(name);

Back to top