You need to sign in to do that
Don't have an account?

How to create an alert with a visual force page
I am assuming that what I trying to do is pretty basic, I am just fairly new to visual force
I would like an alert to show if a certain condition is met. In this alert I would like to have input fields that can be saved to the record.
I created this visual force page, but it is not an alert.
How can I make it into an alert?
<apex:page standardController="Comment__c" rendered="{!if(Comment__c.Care_Management_Related2__c==true,true,false)}">
<apex:form >
<apex:pageBlock title="Enter Care Management Call Details">
<apex:pageBlockSection title="Next Suggested Call" columns="1">
<apex:inputField value="{!Comment__c.Next_Suggested_Call_Date__c}"
label="next suggested call date"/>
<apex:inputText value="{!Comment__c.Next_Suggested_Call_Description__c}"
label="Next Suggested Call Description"/>
</apex:pageBlockSection>
<apex:pageBlockButtons >
<apex:commandButton action="{!save}" value="Save"/>
</apex:pageBlockButtons>
</apex:pageBlock>
</apex:form>
</apex:page>
I would like an alert to show if a certain condition is met. In this alert I would like to have input fields that can be saved to the record.
I created this visual force page, but it is not an alert.
How can I make it into an alert?
<apex:page standardController="Comment__c" rendered="{!if(Comment__c.Care_Management_Related2__c==true,true,false)}">
<apex:form >
<apex:pageBlock title="Enter Care Management Call Details">
<apex:pageBlockSection title="Next Suggested Call" columns="1">
<apex:inputField value="{!Comment__c.Next_Suggested_Call_Date__c}"
label="next suggested call date"/>
<apex:inputText value="{!Comment__c.Next_Suggested_Call_Description__c}"
label="Next Suggested Call Description"/>
</apex:pageBlockSection>
<apex:pageBlockButtons >
<apex:commandButton action="{!save}" value="Save"/>
</apex:pageBlockButtons>
</apex:pageBlock>
</apex:form>
</apex:page>
I will be telling you everything you need to know about the Home Depot hours, you May also check the Home depot near me Locations and Home Depot Customer Service Number.
You can do something like this below for js alert.
Final code would after adding would be something like this below.
Hope this helps!
I have created a custom field on Account object with data type checkbox. The field name is “Display_Alert__c”
Create a visual force page “AccountAlertLayoutPage” to display alert.
I created this page with below code.
<apex:page standardController="Account"> <script> if({!Account.Display_Alert__c}) alert('Display Alert!!'); </script> </apex:page>
Next go to Account page Layout and add visualforce page created above to the Account PageLayout.
get more information on https://www.salesforcetutorial.com/alert-salesforce-standardcustom-object-page-layouts/