JSF a4j:commandLink组件在a4j:repeat中不起作用

时间:2009-10-30 16:06:41

标签: jsf seam ajax4jsf

我的JSF模板中有这样的代码:

    <h:form>
    <table id="users" cellspacing="0">
    <a4j:repeat var="person" value="#{personList}">
    <tr>
    <td class="col1">
    <a4j:commandLink 
disabled="#{!canCreatePerson}" 
styleClass="#{canCreatePerson ? '' : 'inactive_link'}" 
action="#{adminPageController.create}"  
reRender="user-dialog-region" 
timeout="5000" 
limitToList="true" 
ignoreDupResponses="true" 
title="#{canCreatePerson ? messages['edit_user'] : ''}" 
onclick="if (!ajaxSubmissionAllowed) {return false;} 
ajaxSubmissionAllowed=false;" 
oncomplete="ajaxSubmissionAllowed=true;"> 
<h:outputText id="userName" value="#{person.name}"/>
</a4j:commandLink>
    </td>
    </tr>
    </table>
    </h:form>

这完全适用于a4j:repeat标签,但在a4j内没有任何动作:重复,就像它在我的模板中实现一样。

1 个答案:

答案 0 :(得分:0)

问题出现在变量personList的SCOPE类型中,它是CONVERSATION,在我将其更改为PAGE后,一切正常。 很奇怪,我没有看到任何来自SEAM的错误。