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


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”;
});

Thnaks for the solution, it works as required.