2

我遇到了 commandLink 的问题,它首先在我的表中工作,但其他的在 ui:repeate 中进行,并且那里的 commandLink 不起作用

<tr>
                            <td rowspan="#{form25Bean.forms1size}">Наименования научных
                                лабораторий:</td>

                            <td>#{form25Bean.forms1first.sciencenName}</td>
                            <td>#{form25Bean.forms1first.innovationName}</td>
                            <td>#{form25Bean.forms1first.ppcPortion}</td>
                            <td><h:commandLink value="удалить" id="cl2"
                                    action="#{form25Bean.remove}">
                                    <f:setPropertyActionListener
                                        target="#{form25Bean.selectedForm}" value="#{form25Bean.forms1first}" />
                                </h:commandLink> <h:column>
                                    <h:commandLink value="изменить" action="#{form25Bean.edit}">
                                        <f:setPropertyActionListener
                                            target="#{form25Bean.selectedForm}" value="#{form}" />
                                    </h:commandLink>
                                </h:column></td>
                        </tr>
                        <ui:repeat var="f1" value="#{form25Bean.forms1}">
                        <h:form>
                            <tr>
                                <td>#{f1.sciencenName}</td>
                                <td>#{f1.innovationName}</td>
                                <td>#{f1.ppcPortion}</td>
                                <td><h:commandLink value="удалить" id="cl2"
                                        action="#{form25Bean.remove}">
                                        <f:setPropertyActionListener
                                            target="#{form25Bean.selectedForm}" value="#{f1}" />
                                    </h:commandLink>
                                     <h:column>
                                         <h:commandLink value="изменить" action="#{form25Bean.edit}">
                                            <f:setPropertyActionListener
                                                target="#{form25Bean.selectedForm}" value="#{f1}" />
                                         </h:commandLink>
                                    </h:column></td>
                            </tr>
                            </h:form>
                        </ui:repeat>
4

1 回答 1

1

看起来你有嵌套表格

有一个表格包裹着你的整个桌子(因为你在h:commandLink上面有几个<ui:repeat

而且里面有form一个ui:repeat

看看你生成的源代码(html),你得到了<form>.... <form>....</form></form>

摆脱嵌套形式...(例如删除<h:form>from ui:repeat

于 2012-11-13T08:14:32.640 回答