Split and multiline
You are allowed to display grid rows in multiline mode. In the sample below both multiline and split modes are enabled.
You are allowed to display grid rows in multiline mode. In the sample below both multiline and split modes are enabled.
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxgrid.css"> <link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxgrid_dhx_skyblue.css"> <script src="../../codebase/dhtmlxcommon.js"></script> <script src="../../codebase/dhtmlxgrid.js"></script> <script src="../../codebase/dhtmlxgridcell.js"></script> <script src="../../codebase/ext/dhtmlxgrid_splt.js"></script> <div id="gridbox" style="width:600px;height:270px;background-color:white;"></div> <script></script>mygrid = new dhtmlXGridObject('gridbox'); mygrid.setImagePath("../../codebase/imgs/"); mygrid.setHeader("Sales,Book Title,Author,Price,In Store,Shipping,Bestseller,Date of Publication"); mygrid.setInitWidths("50,80,100,80,80,80,80,200"); mygrid.setColAlign("right,left,left,right,center,left,center,center"); mygrid.setColTypes("dyn,ed,ed,price,ch,co,ra,ro"); mygrid.getCombo(5).put(2, 2); mygrid.enableMultiline(true); mygrid.setColSorting("int,str,str,int,str,str,str,date"); mygrid.setSkin("dhx_skyblue"); mygrid.init(); mygrid.splitAt(2); mygrid.loadXML("../common/grid_ml.xml");