TheCoder4eu / BootsFaces-OSP

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

b:InputText label is not rendering while using facet append inside it. #1114

Closed atsoares closed 4 years ago

atsoares commented 4 years ago

The main problem is the z-index of input-group that is generated when I use the append.

Input without append image

Input with append image

How to change the z-index in label inside inputtext?

geopossachs commented 4 years ago

Hello @atsoares, it is possible that you post a JSF example and a screenshot of the error in the browser here so that we can understand the case

atsoares commented 4 years ago

Hi @geopossachs , thanks for your help but I already gave up of this approach, did solve it using columns without the facet append.

geopossachs commented 4 years ago

grafik

            <b:formGroup>
                <b:inputText id="bInputText" 
                             value="#{myBean.myItem5}"
                             required="true" 
                             requiredMessage="please fill out the select field e"
                             immediate="true" 
                             label="Show for 1114"
                             >
                    <f:facet name="prepend">
                        <h:outputText value="$" />
                    </f:facet>
                    <f:facet name="append">
                        <h:outputText value=".00" />
                    </f:facet>
                </b:inputText>                
                <b:message for="bInputText" />
            </b:formGroup>