JSF 与使用 BootsFaces.靴子面孔不起作用



我的输入文件中有如下代码.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>

您不正确地使用了b:inputText。您不应该将h:inputText包裹在其中。您可以使用b:inputText标记绑定值:

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

另请参阅:

  • https://showcase.bootsfaces.net/forms/inputText.jsf(文档(。
  • https://github.com/TheCoder4eu/BootsFacesWeb(如果您想下载作品集及其示例(。

相关内容

  • 没有找到相关文章

最新更新