Right-aligned table rows

0

I want the rows in my table to be right-aligned and the column heading centralized, can anyone help? The code looks like this:

<p:column sortBy="totalApontado">
  <f:facet name="header">
   <h:outputText id="columnHeader_totalApontado" value="#       
   {messages['quantidade.apontada']}" />
  </f:facet>
  <h:outputText id="totalApontado"
  value="#{row.totalQuantidadeProcesso}" style="text-align: right;"/>
    
asked by anonymous 10.12.2015 / 19:15

1 answer

0

Change your css like this:

value="#{row.totalQuantidadeProcesso}" style="float: right;"/>
    
10.02.2017 / 12:22