Categories | Question details Back To List | ||
Can I have a grid without any border? If the number of rows in the grid are less (like 2 or 3) which don't occupy the complete window, still I can the default border of the grid. Is there a way to hide or remove the border. Answer posted by Support on Oct 06, 2008 05:30 You can update it in dhtmlxgrid.css For example , for XP skin it will be div.gridbox_xp{ border:1px solid lightgrey; //can be removed } or add next line to the grid's init grid.entBox.style.border="0px solid white"; |