2
How do I take the edge of a primefaces datagrid???
follows the part of the code I use the datagrid:
<p:dataGrid columns="3" value="#{projetistaBean.listaDeProjetistas}" var="projetista" styleClass="ui-datagrid" >
and the part of the code that I customize the datagrid:
.ui-datagrid{
border: none;
}
and nothing from the edge
that’s what I did. But it doesn’t work. I then added: . ui-datagrid tr{ border: None ! Important; }
– user13468
the problem is that I can take the borders of the rows and columns of the datagrid, but the general component (the border that surrounds the whole datagrid) does not come out
– user13468
Try this other way... (see amendment)
– NilsonUehara