Categories | Question details Back To List | ||
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"; Answer posted on Apr 06, 2009 03:26 Thnaks for the solution, it works as required. |