如何在 JSf 中动态将 id 分配给数据表列

发布于 2024-11-01 13:32:53 字数 1554 浏览 0 评论 0原文

您好,请检查以下代码供您参考。

                                    <%
                                        System.out.println("Here???????? 111111 :::::::::::::: "+request.getAttribute("COLUMNSIZE"));

                                        if(request.getAttribute("COLUMNSIZE") != null){

                                            int columnSize = 0;
                                            columnSize = Integer.parseInt(request.getAttribute("COLUMNSIZE").toString());
                                            System.out.println("Here 111111 :::::::::::::: "+columnSize);

                                            for(int loop=0 ; loop < columnSize ; loop++){
                                    %>

                                    <h:column>
                                        <f:facet name="header" >
                                            <h:outputText value="Field <%=loop%>">
                                            </h:outputText>
                                        </f:facet>
                                        <h:outputText value="Password" />
                                    </h:column>

                                    <%
                                        }
                                        }
                                    %>

                                </h:dataTable>

现在我想要的是我想使用循环变量动态地将 id 分配给列...但是 scriplets 是不允许的,我找不到任何其他方法。

因此,如果你们中有人对此有任何想法,请尽快回复我。

Hi please check below code for your reference.

                                    <%
                                        System.out.println("Here???????? 111111 :::::::::::::: "+request.getAttribute("COLUMNSIZE"));

                                        if(request.getAttribute("COLUMNSIZE") != null){

                                            int columnSize = 0;
                                            columnSize = Integer.parseInt(request.getAttribute("COLUMNSIZE").toString());
                                            System.out.println("Here 111111 :::::::::::::: "+columnSize);

                                            for(int loop=0 ; loop < columnSize ; loop++){
                                    %>

                                    <h:column>
                                        <f:facet name="header" >
                                            <h:outputText value="Field <%=loop%>">
                                            </h:outputText>
                                        </f:facet>
                                        <h:outputText value="Password" />
                                    </h:column>

                                    <%
                                        }
                                        }
                                    %>

                                </h:dataTable>

Now what i want to is that I want to assign id to column dynamically using loop variable ... but scriplets is not allowed and I cant found any other way for it.

So if any of you have idea about it then please reply me quickly.

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

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

发布评论

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

评论(3

爱人如己 2024-11-08 13:32:53

如果我正确地阅读了您的问题,您想动态更改数据表的列数(我可能是错的)。

如果您使用的是icefaces 或richfaces,为什么不使用ice:columnsrich:columns 呢?

If I read your question right you want to change the number of columns of your dataTable dynamically (I may be wrong).

If you're on icefaces or richfaces why don't you make use of ice:columns or rich:columns?

蓝眸 2024-11-08 13:32:53

Scriplet 不应与 JSF 表达式混淆。下面的代码可用于实现您已经尝试过的功能,将逻辑放置在支持 bean 和看起来更具可读性。

<ui:repeat value="#{backingBean.headerNames}" var="header">
                 <li> 
                      <h:outputText value="#{header.field}" />
                 </li> 
</ui:repeat>

有关更多详细信息,请参阅 JSF EL文档

Scriplets shouldn't be mixed up with JSF expressions. Below code can be used to achieve what you already trying, placing logic in backing bean & looks more readable.

<ui:repeat value="#{backingBean.headerNames}" var="header">
                 <li> 
                      <h:outputText value="#{header.field}" />
                 </li> 
</ui:repeat>

For further details, go through JSF EL Documentation

一身仙ぐ女味 2024-11-08 13:32:53

可能是它的工作。

HtmlOutputText test = new HtmlOutputText();
test.setValue("test");

HtmlDataTable dataTable = new HtmlDataTable();
dataTable.getChildren().add(test);

May be its work.

HtmlOutputText test = new HtmlOutputText();
test.setValue("test");

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