使用 JSF 2 实现级联下拉菜单
我正在尝试使用 JSF 2.0 在我的应用程序中创建级联下拉功能。级联的级别是 6。如何做到这一点?我用谷歌搜索过,但还没有找到一个很好的教程来解释它。
我也在使用 prime faces 组件库
Mos
am trying to create a cascading drop down feature in my application using JSF 2.0. The level of cascade is 6. How does one go about doing this? I have googled but I haven't come across a good tutorial that explains it well.
Am also using the prime faces component library
Mos
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
primefaces 展示中有一个关于如何执行此操作的示例: http://www.primefaces .org/showcase/ui/pprSelect.jsf
总而言之,您需要对第一个下拉列表进行 ajax 事件处理:
将执行侦听器,并且将执行以“suburbs”为 id 的组件(另一个下拉列表)使用从侦听器加载的新数据进行更新。您可以在级联的每个下拉列表中链接这些 ajax 事件:)
There is a example on how to do this on the primefaces showcase: http://www.primefaces.org/showcase/ui/pprSelect.jsf
To summarize, you need an ajax event handling on the first drop down:
The listener will be executed and the component with "suburbs" as id (another dropdown) will be updated with the new data loaded from the listener. You can chain these ajax events in each drop down on your cascade :)