JSF使用BootsFaces。 BootsFaces不工作

问题描述 投票:0回答:1

我在input.xhtml文件中有如下代码,它接受用户的输入。但是这个BootsFaces代码没有用,请有人帮我解决这个问题,如果有人面对它之前。

<b:form id="studentForm" styleClass="form-horizontal">
              <h:panelGrid columns="1" cellpadding="5">
                <b:inputText label="E-mail:" labelStyle="width:80px;">
                  <f:facet name="prepend">
                    <h:inputText value="#{studentBean.firstName}" styleClass="form-control" />
                  </f:facet>
                </b:inputText>
            </h:panelGrid>
            <div class="form-group">
                        <div class="col-sm-offset-2 col-sm-10">
                            <b:commandButton value="Create" action="#{studentBean.createStudentForm}" styleClass="btn btn-default" />
                        </div>
                    </div>
</b:form>
jsf bootsfaces
1个回答
0
投票

您正在使用b:inputText错误。你不应该把h:inputText包在里面。您可以使用b:inputText标记绑定值:

<b:inputText label="First name:"
             labelStyle="width:80px;"
             value="#{studentBean.firstName}"/>

也可以看看:

© www.soinside.com 2019 - 2024. All rights reserved.