Categories | Question details Back To List | ||
getCellCombo is not defined error I was trying to work with auto complete functionality with dhtmxl grid using dhtmlx combo. While adding row, the particular cell should have an autocomplete functionality. It gives me error that "getCellCombo()" is not defined. When I searched for this string to the dhtmlx source package box, I did not find it anywhere. Later I saw the link http://dhtmlx.com/docs/products/kb/index.shtml?cat=search&q=3463&ssr=yes&s=combo I do have a similar problem. Kindly suggest me the patch around getCellCombo. Regards, Rajesh. Email : rajeshku@hexaware.com Answer posted by Support on Jan 10, 2009 08:44 If you are using "combo" column type you need to include dhtlxgrid/codebase/excell/dhtmlxgrid_excell_combo.js dhtmlxcombo/codebase/dhtmlxcombo.js After that some column(s) need to have type "combo" And after data loading , you will be able to access any cell in such column and receives related combo object through grid.cells(id,ind).getCellCombo(); |