我正在研究按钮。
我的组件代码如下。
<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 没有被调用。当我在新窗口中打开我的页面时,函数被调用。但是在同一个窗口中它没有被调用。
任何帮助都非常感谢。