Categories | Question details Back To List | ||
dhtmlxgrid read only combo Hi, How can i have a combo box i.e read only. e.g i've <column id="CTRY_ID" width="80" type="combo" align="Left" color="#d5f1ff" sort="int" source= "DataModificationScreen\Client\Country.xml"> ISO code for the country of incorporation of the client </column> in the above code type="combo" renders an editable comobo box at the client side.How can i make it read only. Thankx in advance. Answer posted by Alex (support) on Mar 16, 2009 04:12 Hi, You can use "editable" attribute to make combo readonly: <column id="CTRY_ID" width="80" type="combo" align="Left" color="#d5f1ff" sort="int" source= "DataModificationScreen\Client\Country.xml" editable="false"> ISO code for the country of incorporation of the client </column> |