BootsFaces
BootsFaces copied to clipboard
panelGrid columns error
hi when i use columns element in the panelGrid it don't work
<b:panelGrid columns="6" >
<p:outputLabel value="مدين"/>
<p:outputLabel value="#{journalMovePage.debit}"/>
<p:outputLabel value="دائن"/>
<p:outputLabel value="#{journalMovePage.credit}"/>
<p:outputLabel value="الفرق"/>
<p:outputLabel value="#{journalMovePage.debit-journalMovePage.credit}"/>
</b:panelGrid>
The columns
attribute has a different meaning. Try colSpans="2,2,2,2,2,2"
instead.
ok thank you