Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Poornima on Apr 06, 2009 01:47
open dhtmlx forum
Grid Split

Hi,

Is there any method to show a separator at the split in a grid, like a vertical line or something to differentiate between the split and the non split columns ?

Thanks
Answer posted by dhxSupport on Apr 06, 2009 03:03

Add following code after grid was fully loaded:

mygrid.loadXML("grid.xml",function(){

mygrid.objBox.style.borderLeft="2px solid black";
mygrid.hdrBox.style.borderLeft="2px solid black";
});

Answer posted on Apr 06, 2009 03:26
Thnaks for the solution, it works as required.