我正在使用按鈕。<apex:commandbutton>無法正常工作
我的組件代碼如下。
<apex:commandButton action="{!sendAction}"
value="SEND" styleClass="Button" rerender="messageId" immediate="true"/>
<apex:outputpanel rendered="{!showmsg}" id="messageId">
<apex:outputtext value="{!outputMessage}" style="color:red;font-size:13px;font-weight:bold;"/>
<br />
</apex:outputpanel>
我的控制器代碼如下。
public PageReference sendAction()
{
showmsg=true;
outputMessage='working';
return null;
}
但我的行動方法sendAction沒有被調用。 當我打開包含在新窗口中的頁面時,函數正在調用。但在同一個窗口中,它沒有被調用。
任何幫助真的很感激。
您是否在頁面標籤上指定了'controller =「Your-Controller-Name」「或」extension =「Your-Controller-Extension-Name」「? –
是的..我在標籤中添加了控制器 –
dip
@dip您是否嘗試過我的建議? –