Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Is this in a visualforce page or a standard page?
There are a number of ways to do this. One is to have a pagemessages component and then add an error message to it, something like:
<apex:page controller="MyController"> <apex:pageMessages/> <apex:pageMessage summary="My Error Message" severity="error" strength="1" rendered="{!showError}/> </apex:page>
This assumes there is a boolean property in MyController named showError.
Is this in a visualforce page or a standard page?
There are a number of ways to do this. One is to have a pagemessages component and then add an error message to it, something like:
This assumes there is a boolean property in MyController named showError.