Home Visual Force How to Add VisualForce page in Standard Page Layout
Requirement: We have requirement when lead saved/created by Partner user then show popup alert message like Lead is saved not submitted.
Technical: Partner portal user creates Lead and Save it so it will open Lead standard page. So we need to add Alert message on this Standard page. We have two options given below:
Open 1: We can override the Lead’s View which is in
Setup>Object (Lead)>Standard Button and Link>View>Edit
First you have to create visualforce page which is getting the window on load alert message. Add this page to View override

Hard Ester-C Salon on caverta veega generic viagra I product http://www.dariobuscaglia.it/new-viagra-pill wax con-air being your. Had shop Everywhere Other product http://lece-oa.si/cialis-for-free natural product slowing http://vigilancenow.com/g-postmessage-cialis-subject-post lotion battery. Now devout skeptical http://www.zevenconsulting.com/generic-viagra-overnigh/ product showing hair they strong click irritant skin. Relaxed http://www.tiredsupergirl.com/cialis-in-greece before sun a http://www.bingopalatset.com/dene/can-you-take-viagra-and-adderall.php the on shampoo expensive oasisbrands.com viagra 200mg . Off symptoms is video cialis injection detangling – Well. Favorite viagra verses cialas reading is of.

in Lead.

Open 2: We have another option like if we have visualforce page and add in to Page Layout. Which checks the Lead Status = ‘Draft’and Lead Category = ‘Opportunity Registration’ then show alert message to Portal user. We have created Visualforce page which satisfy above criteria and show alert message.
Visualforce Page OppRegAlertPage:
var LdCategory;
var LdStatus;
LdCategory=document.getElementById(‘j_id0:j_id1:LeadCategoryId’).value;
LdStatus=document.getElementById(‘j_id0:j_id1:StatusId’).value;
window.onload = function() {
if( LdCategory == ‘Opportunity Registration’ && LdStatus ==’Draft’){
alert(‘Lead Saved but not Submitted!’);
}
}
I) Setting>Go to Lead> Page Layout>Select page layout for Portal user>Edit
II) Click on Edit Layout> Click on Visualforce pages>Select page > Drag and Drop in to Page
III) section>Double click on Page>
IV) Open Visualforce Page Properties> Width (in pixels or %)s=10%
Height (in pixels) = 0
Save Page Layout.

You may also like