Setting tab order
Grid supports setting specified tab order for each column.
Just set method "setTabOrder" after grid initialization and pass list of tab orders into this.
Grid supports setting specified tab order for each column.
Just set method "setTabOrder" after grid initialization and pass list of tab orders into this.
<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/ext/dhtmlxgrid_nxml.js"></script> <script src="../../codebase/dhtmlxgridcell.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,150,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.init(); mygrid.setTabOrder("1,3,5,3,4,6,7,8"); mygrid.setSkin("dhx_skyblue"); mygrid.loadXML("../common/grid.xml");