Check documentation for the latest version of dhtmlxSuite setRadioChecked DHTMLX Docs

setRadioChecked

checks a radio button inside of the group

void setRadioChecked(string group,string|number itemId);
groupstringradio button group name
itemIdstring|numberid of the radio button to check

Example

myMenu.load("xml/data.xml",function(){
    myMenu.setRadioChecked(group,itemId);
});

Back to top