使用 JSF 2 实现级联下拉菜单

发布于 2024-12-11 06:18:01 字数 125 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朮生 2024-12-18 06:18:01

primefaces 展示中有一个关于如何执行此操作的示例: http://www.primefaces .org/showcase/ui/pprSelect.jsf

总而言之,您需要对第一个下拉列表进行 ajax 事件处理:

<p:ajax update="suburbs" listener="#{pprBean.handleCityChange}" />

将执行侦听器,并且将执行以“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:

<p:ajax update="suburbs" listener="#{pprBean.handleCityChange}" />

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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文