Is possible get the checkbox checked by group on Menu?

Is possible get the checkbox checked by group on Menu?

I wish know the checkbox selected.


function menuCheckboxClick(id, state) {
		var esta = dhxMenu.getRadioChecked('ed');
		alert(esta);
		return true;
	}
	

Thanks… :question:

This is the XML Code:

<item id="edition" text="edit">
		<item id='Edition1' text='ed1' type='checkbox' group='ed' checked='true'/>
		<item id='Edition2' text='ed2' type='checkbox' group='ed' checked='true'/>
		<item id='Edition3' text='ed3' type='checkbox' group='ed' checked='true'/>
</item>

Any sample with ???

getRadioChecked

Sample:
dhtmlxMenu/samples/06_radios_checks/01_radios_checks.html

In this sample:

menu.loadXML("../common/dhxmenu_radios.xml?e="+new Date().getTime(),function(){ menu.setRadioChecked("bgcolor","p44"); });