DHTMLX Docs & Samples Explorer

Integration with dhtmlxCombo

Integration with dhtmlxCombo is supported in dhtmlxGrid. Double click on any item in the grid and check this functionality.

Source
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxgrid.css">    
<link rel="STYLESHEET" type="text/css" href="../../../dhtmlxCombo/codebase/dhtmlxcombo.css">
<link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxgrid_dhx_skyblue.css">
<script src="../../codebase/dhtmlxcommon.js"></script>
<script src="../../../dhtmlxCombo/codebase/dhtmlxcombo.js" type="text/javascript"></script>
<script src="../../codebase/dhtmlxgrid.js"></script>
<script src="../../codebase/dhtmlxgridcell.js"></script>    
<script src="../../codebase/excells/dhtmlxgrid_excell_combo.js" type="text/javascript"></script>
 
 
 
<div id="gridbox" style="width:450px; height:230px; background-color:white;"></div>
 
<script>
dhtmlx.skin = "dhx_skyblue";
mygrid = new dhtmlXGridObject('gridbox');
mygrid.imgURL = "../../codebase/imgs/";
mygrid.setSkin("dhx_skyblue");
mygrid.loadXML("../common/combo.xml");
</script>