How to hide the grid-line(border) of p:panelGrid without affecting the the border of inner data table in primefaces 4.0
Currently using this CSS :
.ui-panelgrid td, .ui-panelgrid tr{
border-style: none !important
}
which affects both data table and panel grid. But I want only panel grid lines to be hidden.
In my case data table is nested inside panel grid.
Thanks.