I updated my dhtmlx to 4.1.3 version. To load the grid I included following css and js files.
and I am loading following InitGrid function when page load.
function initGrid() {
mygrid=new dhtmlXGridObject(‘gridbox’);
mygrid.setImagePath(‘DHTMLX_413/sources/dhtmlxGrid/codebase/imgs/’);
…
…
…
mygrid.setSkin(“light”);
mygrid.init();
mygrid.loadXML(loadXML.cfm);
so my question is Grid is not loading with any stylesheet but if I change from “light” to “dhx_skyblue” in setskin method it loads fine with proper css. But I want to setskin to “light”. can you please tell me how do I do that? I am missing any css?
And second question is I want to separate each row and column with visible horizontal and vertical lines. How do I do that?
Thanks for your time!