我不确定如何做到这一点,并且可以使用一些建议。
我在标准页面布局上创建了一个自定义按钮,当用户单击它时,我想检查用户是否在此对象中有联系人。
如果他不这样做,我想显示一个警报-“请添加联系人”并将他返回到他当前的标准页面。否则,我希望他能够访问已经编写好的新 VF 页面。我不知道该怎么做...
停!
代码:
<apex:page standardController="MY_List__c" extensions="MYListExtension" >
<apex:form >
<script>
var hasContact = {!totalContacts};
if(hasContact == 0 ){
alert('Please add contacts!');
window.location ="/" + {"!theListId"};
}
else{
window.location = "/MYListSend?id=" + {"!theListId"};
}
</script>
</apex:form>
</apex:page>