You need to sign in to do that
Don't have an account?
iswarya sekar 7
how to display fields based on picklist values
Hi everyone,
I have a picklist field called Engagement_model__c in Opportunity. it has the values
1.Fixed Bid
2.Time&Material
3.Fix Capacity
If 1 is selected it should display some 5 custom fields and values should be entered, and record should be saved.
I have a picklist field called Engagement_model__c in Opportunity. it has the values
1.Fixed Bid
2.Time&Material
3.Fix Capacity
If 1 is selected it should display some 5 custom fields and values should be entered, and record should be saved.
If you are looking for standard Opportunity New Record page functionality, then it is not possible.
This can be done by creating a visualforce page and controller to implement Opportunity record creation and there you can use ReRender and rendered property to hide fields as per your requirement.
Hope this will help you.
Thanks,
Sanjay
THIS IS MY CODE. but when i click save, the record is not saved.
My controller class
A very simple way to find the error onto the page is to just add pageMessages tag just after apex:page tag. FYI Hope this will help you
Thanks,
Sanjay
Save button is working. but my issue is when I'm giving values in custom fields, after clicking save those values are not updating in that particular opportunity.