You need to sign in to do that
Don't have an account?
CloudComputingSFDC
Show alert message on standard Edit page of Case Record.
Please let me know how to achieve this.
1. Show alert message on standard Edit page of Case Record. This alert will show on certain condition.
I know i can show VF page when user clicks on edit button but not interested to go by that route.
Please let me know is there any other way ?
Thanks in advance.
1. Show alert message on standard Edit page of Case Record. This alert will show on certain condition.
I know i can show VF page when user clicks on edit button but not interested to go by that route.
Please let me know is there any other way ?
Thanks in advance.
are you talking about message like this :
For this you need to create one VF page override for edit. Onload of that page you need to show alert msg.
<apex:page standardController="case">
<apex:form >
<apex:pageMessages />
<apex:detail relatedList="true" title="true"/>
</apex:form>
</apex:page>
As you said you know how to do in VF page, You have follow the same. You can you onchange method show popup/alert only on certain condition.
Mark this as solution if you got an answer.
Thanks,
Praveen Murugesan.