我需要在保存页面时在我的VF页面上重新显示一个命令按钮。
现在,我的VF页面上有3个按钮,保存,测试,取消。
我希望当用户打开此VF页面时,在按钮上单击联系人对象,在此Vf页面上,用户最初应该只看到Save&取消按钮。用户单击“保存”按钮后,应显示“测试”按钮。
有什么想法可以做到这一点?保存和取消按钮具有标准的salesforce save&取消功能。
答案 0 :(得分:0)
如果您只想显示按钮,我会使用jQuery:
<apex:commantButton action="{!save}" id="saveButton" reRender="something" oncomplete="showTest()"/>
<apex:commantButton action="{!test}" id="testButton" style="display:none;/>
function showTest(){
jQuery("[id$=testButton]").css("display","block");
}