使用弹出面板编辑 JSF 数据表

发布于 2024-11-03 12:50:21 字数 340 浏览 0 评论 0原文

我正在使用 JSF 1.1 和 Icefaces 1.8.2

我有显示数据库记录的数据表。当前,当用户希望插入或编辑记录时,单击编辑按钮,然后编辑表单或创建表单显示在数据表底部或显示在一个单独的页面。 理想情况下,我想在编辑表单中显示或在数据表顶部创建表单,就像下面的 URL 中的面板弹出窗口一样。 http://postimage.org/image/pglvdcck/

如何使用 JSF 或icefaces 执行此操作?

对此的任何见解都是非常值得赞赏的。

谢谢

I am using JSF 1.1 with Icefaces 1.8.2

I have datatables which displays my database records.Currently when user wishes to insert or edit a record, edit button is clicked and edit form or creating form is either displayed at the bottom of datatable or in a separate page.
Ideally I would like to display in the edit form or create form just on top of datatable like a panel popup like in the following URL.
http://postimage.org/image/pglvdcck/

How can I do this using JSF or with icefaces?

Any insight into this is highly appreciable.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

江南烟雨〆相思醉 2024-11-10 12:50:21

您需要使用ICEFaces组件ice:panelPopup。在 ICEFaces 演示 中查找 - 布局面板 - 弹出面板。

示例 - 将其添加到您的源代码中(实际上在页面的任何位置,甚至在单独的包含文件中):

<ice:panelPopup modal="true" visible="#{myBean.editPopupVisible}">
  <ice:form>
    <ice:input...> some inputs...
    ... Save/Cancel button
  </ice:form>
</ice:panelPopup>

You need to use ICEFaces component ice:panelPopup. Look it up in ICEFaces Demos - Layout panels - Popup panel.

Example - add this to your source (anywhere in the page really, even in a separate included file):

<ice:panelPopup modal="true" visible="#{myBean.editPopupVisible}">
  <ice:form>
    <ice:input...> some inputs...
    ... Save/Cancel button
  </ice:form>
</ice:panelPopup>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文