Categories | Question details Back To List | ||
dhtmlxGrid with dhtmlxCombo not listing all the options
I am using dhtmlxGrid with dhtmlxCombo as one of the column type. I am loading dhtmlxGrid data, column headings and column types from XML configuration. When dhtmlx is lodded, I want to see the dhtmlxCombo with all the options availalbe so that I can select one of them. But when I double click the grid cell that has combo, it shows only one value.
Any idea of what I may have missing? Below is my xml configuration that I load for my dhtmlxGrid <rows> <head> <row id="1001">
When I configure my XML as below to load the options values for dhtmlxCombo, then it works fine. I dont what to configure my XML as below since it requires to XMLS one for grid and another for dhtmlxCombo values.
<column width="20" type="combo" editable="false" source="data.xml" align="left" sort="str" >Status </column>
Please help.
Answer posted by Alex (support) on Dec 03, 2009 01:45 Hello, xmlcontent attribute should be added if options are defined in the grid xml: <column width="20" type="combo" editable="false" source="" align="left" sort="str" xmlcontent="1">.... Please see the dhtmlxGrid/samples/13_interaction_other_components/01_pro_combo.html sample in grid package |