Categories | Question details Back To List | ||
dhtmlXCombo with checkboxes Hi... I am using dhtmlXCombo and capture the values of choice with document.getElementById ( 'Id'). Value, using dhtmlXCombo with checkboxes only captures a selected value outside the box, but not selected in each of the boxes verification. I would like to know if there are special method to capture these values I appreciate your help... Answer posted by Support on Mar 19, 2008 10:22 In latest version it possible to use next API call var checked = comob.getChecked(); The "checked" will contain array of values of checked options. |