发布于 2024-09-26 23:12:15 字数 1064 浏览 5 评论 0 原文

我将 JSF 与 RichFaces 和 Spring Webflow 一起使用。我试图使用数据表中的行来选择行,并在服务器端对所选行执行一些操作。我在从复选框检索数据时遇到了问题。

<rich:column id="compCheckBox" styleClass="center-aligned-text">
                                <f:facet name="header">
                                    <h:selectBooleanCheckbox title="selectAll">
                                    </h:selectBooleanCheckbox>
                                    <h:outputText value="Select"/>
                                </f:facet>
                                <h:selectBooleanCheckbox id="selectComponent" title="selectAll" value="#{workspace.selectedComponentIds[componentInfo.id]}">
                                </h:selectBooleanCheckbox>

                            </rich:column>

并使用提交值

但是,只有 ID 会在 Map 中恢复,默认情况下,Map 中的所有 id 值都显示为“false”。

如何将选定的复选框在地图中标记为 true。

我已参考链接文本获取信息。

我该如何解决这个问题?

谢谢, 阿卜杜勒

I am using JSF along with RichFaces and Spring Webflow. I am trying to select rows from the data table using and perform some operation on the server side on the selected row. How ever I am facing problem retrieving the data from the checkbox.

<rich:column id="compCheckBox" styleClass="center-aligned-text">
                                <f:facet name="header">
                                    <h:selectBooleanCheckbox title="selectAll">
                                    </h:selectBooleanCheckbox>
                                    <h:outputText value="Select"/>
                                </f:facet>
                                <h:selectBooleanCheckbox id="selectComponent" title="selectAll" value="#{workspace.selectedComponentIds[componentInfo.id]}">
                                </h:selectBooleanCheckbox>

                            </rich:column>

And submitting the value using

However only the Ids are restored in the Map, and by default all the values of the ids in the map are shown as 'false'.

How do I get the selected checkboxes to get marked as true in the map.

I have referred link text for information.

How can I resolve this?

Thanks,
Abdul

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

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

发布评论

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

评论(1

゛清羽墨安 2024-10-03 23:12:15

您需要确保在后续请求中保留相同的数据模型。数据表的value 属性在表单提交期间必须返回与显示期间完全相同的数据模型。如果数据模型不存在或不同,则所选项目的地图很可能不会按您的预期填充。


根据评论更新:您还需要确保表格和提交按钮位于相同 内。

You need to ensure that the same datamodel is preserved in the subsequent request. The value attribtue of the datatable must return exactly the same datamodel during form submit as it was during display. If the datamodel is not present or different, then chances are that the map of selected items won't be filled as you'd expect.


Update as per the comment: you also need to ensure that the table and the submit button are inside the same <h:form>.

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