Categories | Question details Back To List | ||
Hide grid border and lines Hi Iam using two grids on a page of which i want to hide the border lines and the grid lines of one grid..Changing CSS affects both the grid..Is there any method to hide all the lines of a grid... With regards, Udaya.R Answer posted by Support on Sep 17, 2008 03:18 You can try to redefine grid classes according to the containers where they are initialized: #gridbox1.gridbox table.obj td { border: 0px; ... } Where gridbox1 is the id of the grid container. For another grid the following class will be applied: div.gridbox table.obj td { border: 1px; ... } |