apex:visualforce组件中的commandButton不调用控制器方法

时间:2012-09-19 19:03:25

标签: salesforce apex-code visualforce

我在visualforce组件中有一个commandButton。预期的行为是将调用控制器方法。页面将刷新,但不会调用commandButton {!performUnlinkContact}中注册的方法。奇怪的是,如果我将按钮放在基础visualforce页面上,它会按预期调用控制器方法 - 但是当在组件中时,它不会。

这是我的组件:

<apex:component >
    <apex:attribute name="rk" description="RK Base Contact Data"  type="Object" required="true"/>

    <div class="unlinkBox">
        <div class="unlinkHeader">
            <div class="unlinkHeaderLeft">Wrong Contact?</div>
            <div class="unlinkHeaderRight"><a href=""  onclick="return hideUnlinkPanel()"><apex:image style="cursor: pointer;" value="{!$Resource.x}" alt="Close Panel" /></a></div>
        </div>
        <div class="unlinkBody">
            <div class="unlinkBodyLeft">
                Click Yes if the Contact displayed is incorrect.<br/><br/>You will be given the opportunity to link to a different Contact.
            </div>
            <div class="unlinkBodyRight">
                <apex:outputpanel id="callMethod">
                    <apex:commandbutton value="Yes, this is the wrong contact" action="{!performUnlinkContact}" rerender="" status="myDisplayStatus" />&nbsp;&nbsp;&nbsp;&nbsp;<a onclick="return hideUnlinkPanel()" style="color:blue;cursor:pointer;text-decoration:underline">No</a>
                </apex:outputpanel>
                <apex:actionStatus id="myDisplayStatus"  startText="(performing Contact Unlink...)"  stopText=""/>
            </div>
        </div>
    </div>
</apex:component>

,这是控制器扩展中的方法:

public PageReference performUnlinkContact() {
     System.debug('==================================!!performUnlink');
    if (this.thisLead.rkContactId__c != 0) {
        this.thisLead.rkContactId__c = 0;

        update this.thisLead;
    }

    return null;
}

我确信我必须做错事,因为我刚接触salesforce并且还在学习,但在搜索如何解决此问题时,我无法找到任何相关问题。在此先感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

您还可以使用类型为ApexPages.Action的apex:属性将performUnlinkContact()的引用传递给组件,然后当commandButton使用此引用时,它将调用页面控制器中定义的方法。

<apex:component>
    <apex:attribute name="performUnlinkContact" type="ApexPages.Action" description="Passing method from controller"/>
    <!-- your stuff here -->
</apex:component>

然后当您使用组件时,您必须像这样填充该属性:

<c:MyComponent performUnlinkContact="{!performUnlinkContact}"

答案 1 :(得分:0)

我认为rerender=""不是做假reRender命令的方法。我会尝试使用rerender="none"