primefaces 数据表选择模式多重不适用于 mojarra

发布于 2024-10-30 18:57:24 字数 433 浏览 1 评论 0原文

最近,我从 myfaces 切换到 mojarra,并注意到 primefaces 数据表复选框多行选择不起作用。

我已经尝试过 http://www.primefaces.org/showcase/ 上提供的确切示例程序ui/datatableRowSelectionRadioCheckbox.jsf

对于 myfaces,单选和多选都可以工作,但是对于 mojarra 多重选择不起作用(setSelectedCars 方法中的 selectedCars.length 为 0)

我尝试过使用 mojarra 2.0.3 和 mojarra 2.1.0与primefaces 2.2.1

Recently I switched to mojarra from myfaces and noticed that primefaces datatable checkbox multiple row selection is not working.

I have tried the exact sample program available at http://www.primefaces.org/showcase/ui/datatableRowSelectionRadioCheckbox.jsf

With myfaces both single and multiple selection are working ,but with mojarra multiple selection is not working(selectedCars.length is 0 in setSelectedCars method)

I have tried with mojarra 2.0.3 and mojarra 2.1.0 with primefaces 2.2.1

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

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

发布评论

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

评论(2

蒗幽 2024-11-06 18:57:24

添加 'f:view contentType="text/html"' 解决了问题。

请阅读http://www.primefaces.org/faq.html

Adding 'f:view contentType="text/html"' solved the problem.

Read this in http://www.primefaces.org/faq.html

我不会写诗 2024-11-06 18:57:24
           <p:column sortBy="#{tup.docTypeAndDirection}" >
                                <f:facet name="header">
                                <h:outputText value="Document Type"/>

                                </f:facet>
                                <h:outputText value="#{tup.docTypeAndDirection}"/>
          </p:column>

          <p:column sortBy="#{tup.partnerEDIAddress}" >
                                <f:facet name="header">
                                <h:outputText value="Partner Trading Address"/>
                                </f:facet>
                                <h:outputText value="#{tup.partnerEDIQual}:#{tup.partEDIAddr}"></h:outputText>
          </p:column>                   
        </p:dataTable>
           <p:column sortBy="#{tup.docTypeAndDirection}" >
                                <f:facet name="header">
                                <h:outputText value="Document Type"/>

                                </f:facet>
                                <h:outputText value="#{tup.docTypeAndDirection}"/>
          </p:column>

          <p:column sortBy="#{tup.partnerEDIAddress}" >
                                <f:facet name="header">
                                <h:outputText value="Partner Trading Address"/>
                                </f:facet>
                                <h:outputText value="#{tup.partnerEDIQual}:#{tup.partEDIAddr}"></h:outputText>
          </p:column>                   
        </p:dataTable>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文