TheCoder4eu / BootsFaces-OSP

BootsFaces - Open Source Project
Apache License 2.0
246 stars 102 forks source link

Improve b:panelGrid integration with inputs #724

Closed ggam closed 2 months ago

ggam commented 7 years ago

I think this will be a bit tricky, but would be great if:

<b:form>
    <b:panelGrid cols="3,9">
        <b:inputText value="XX" label="zz" />
        <b:inputText value="XX" label="zz" />
    </b:panelGrid>
</b:form>

could be equivalent to:

<b:form>
    <b:row>
        <b:inputText value="XX" label="zz" labelColXs="3" colXs="9" />
    </b:row>
    <b:row>
        <b:inputText value="XX" label="zz" labelColXs="3" colXs="9" />
    </b:row>
</b:form>

Special integration for horizontal forms would be needed as well. Would really reduce boilerplate.

stephanrauh commented 2 months ago

I'm afraid development of BootsFaces has slowed down considerably. We'll never manage to address this issue. Let's close it.