TheCoder4eu / BootsFaces

BootsFaces : the next gen JSF Framework
MIT License
71 stars 17 forks source link

panelGrid columns error #43

Open mostfa-ayad opened 8 years ago

mostfa-ayad commented 8 years ago

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>
stephanrauh commented 8 years ago

The columns attribute has a different meaning. Try colSpans="2,2,2,2,2,2" instead.

mostfa-ayad commented 8 years ago

ok thank you