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

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;

}