0

我的 dataTable 由 ajax 调用填充,我的 commandLink(在 datataable 中)没​​有指向正确的位置并始终呈现相同的页面。并在控制台中显示:HtmlLabelRend W 标签组件的属性“for”,ID 为 j_id1471051656_3ffdbef6: j_id1471051656_3ffdbfc6 未定义

但是当我将命令链接放在数据表之外时,操作方法可以正常工作。

这个问题很少见!,我该如何解决?

提前致谢。

我的 Jsf 页面:

<h:form>
        <p:panel header="Busqueda">
            <p:panelGrid style="width:100%;">
                <p:row>
-----------------------------------(inputs)---------------------------------------
                    <p:column>
                        <p:commandButton value="Buscar" update="grilla"
                            action="#{devolucionAdminController.buscarSD()}">´
                            </p:commandButton>
                    </p:column>
                </p:row>
            </p:panelGrid>
            <p:messages closable="true" redisplay="true" id="msj"></p:messages>
        </p:panel>
        <p:dataTable id="grilla" var="r"
            value="#{devolucionAdminController.listado}"
            emptyMessage="No se han encontrado solicitudes de devolución">
            <p:column headerText="Sec">
                <h:outputText value="#{r.idSoliDevo}" />
            </p:column>
            <p:column headerText="Cuenta">
                <h:outputText value="#{r.cuentaId}" />
            </p:column>
            <p:column headerText="Ver Detalle Sol. Dev ">
                <p:commandLink 
                    action="#{bajaController.mostrarSolicitudBaja(r.cuentaId,r.idSoliDevo)}" ajax="false">
                    <p:commandButton icon="ui-icon-search" title="Ver Detalle" />
                </p:commandLink>
                </p:column>
        </p:dataTable>

<!--works fine  -->
    <p:commandLink action="#{bajaController.mostrarSolicitudBaja(80003,340)}"
            ajax="false">
            <p:commandButton icon="ui-icon-search" title="Ver Detalle" />
        </p:commandLink>
        </h:form>

我的第一个托管 Bean:

@ManagedBean
@RequestScoped
public class DevolucionAdminController {
 List<TaSoliDevo> listado;
//getters and setters
........................
public void buscarSD() {

   .............................
}

我的第二个托管 Bean:

@ManagedBean
@RequestScoped
public class BajaController {

    public String mostrarSolicitudBaja(long cuentaId, long solicDevId) {
    .........................
    return "goResult";

}}
4

4 回答 4

2

使用 process="@this" 并使用 actionListener 而不是 action

<p:commandLink process="@this" actionListener="#{bajaController.mostrarSolicitudBaja(80003,340)}"></p:commandLink>
于 2013-10-11T05:28:09.710 回答
1

删除 ajax="false" 标签,它对我有用

于 2013-10-10T22:33:54.697 回答
1

我遇到了同样的问题,我一直在努力寻找解决方案,但对我没有任何帮助。这是我最终解决问题的方法:

  • 我删除了ajax属性
  • 我添加了process="@this"

这是更改后我的 commandLink 的样子:

<p:commandLink process="@this" action="#{projsSummaryBacking.redirectProjTasks(proj)}" >
   <h:outputText value="#{proj.title}" />
</p:commandLink>

我希望这可以帮助某人。/米\

于 2020-06-13T01:45:34.377 回答
0

将您的 commandLink 替换为

<p:commandButton  icon="ui-icon-search" title="Ver Detalle"
action="#{bajaController.mostrarSolicitudBaja(r.cuentaId,r.idSoliDevo)}" ajax="false"/>

真的不需要在命令链接里面放一个命令按钮,只需要放一个图标

于 2013-10-11T06:41:52.727 回答