选择一个菜单 +命令按钮
您好,我有以下 selectOneMenu
<h:selectOneMenu value="#{modelsController.selected.idBrands}">
<f:selectItems value="{brandsController.itemsAvailableSelectOne}" />
</h:selectOneMenu> <br/>
,其中填充了 bean 中的所有可用品牌。
我想创建一个按钮,检索在提到的 selectOneMenu 中选择的品牌,并显示通过选择过滤的 bean 中的记录(我的意思是,如果用户选择了, selectOneMenu 中的 aBrand 所有来自 abrand 的型号都将是 这是一个带有 EcpliseLink的
简单 CRUD jsf 2.0。
有人能指出我正确的方向吗? 非常感谢
Hi I have the follonwing selectOneMenu
<h:selectOneMenu value="#{modelsController.selected.idBrands}">
<f:selectItems value="{brandsController.itemsAvailableSelectOne}" />
</h:selectOneMenu> <br/>
which is populated with all available brands in the bean.
And I would like to create a button that retrives the brand selected in the mentioned selectOneMenu and display the records in the bean filtered by the selection (what I mean, is that if the user selected, aBrand in the selectOneMenu all models from abrand will be shown in a datatable.
This is a simple CRUD jsf 2.0 with EcpliseLink.
Could somebody point me in the right direction?
Thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
和
:并定义一个根据所选项目填充数据表列表的操作方法。
并以通常的方式将其显示在
中。Add a
<h:form>
and a<h:commandButton>
:And define an action method which fills the datatable list based on the selected item.
And display it in the
<h:dataTable>
the usual way.