Hi,
I want to display the combo box in the grid cell as we see an html select control. It should always show as dropdown and not just when the cell is double clicked.
For example in Integration with dhtmlxCombo I want the Selectbox Mode to always show as value in a select control instead of just the value.
Is it possible to achieve this?
Also, when I double click in my grid it allows me to enter text in the cell. I just want it to allow selecting one of existing options. In my grid I have
mygrid.setEditable(true);
as without this, the combo never shows even if double clicked.
Note that I am using
Version: 5.0.2
Edition: Professional
I do the column type etch setting in the script instead of XML and options in combo are loaded using following code within the grid loading script:
for (i = 0; i < contryArray.length; i++) {
mygrid.getCombo(14).put(contryArray[i], contryArray[i]);
}
This is also causing the combo to not load the selected value that is passed for the column in the XML.
Regards,
Nilesh