You need to sign in to do that
Don't have an account?
teena jacob
How to set a custom field as a color picker in Salesforce lightning?
Hi,
My requirement is: I have custom object Visit_Type__c and a custom field Color__c as a color picker to set the color.From the Activity Object, it has a lookup relation to Visit_Type__c. On creation of an event in Standard Salesforce calendar, When I select the visit type value it needs to show the corresponding color on the event, How can I achieve this.
Thanks!
My requirement is: I have custom object Visit_Type__c and a custom field Color__c as a color picker to set the color.From the Activity Object, it has a lookup relation to Visit_Type__c. On creation of an event in Standard Salesforce calendar, When I select the visit type value it needs to show the corresponding color on the event, How can I achieve this.
Thanks!
Recently I had the similar requirements, i achieved that using VF page and VFremoting See the below code:
Visual Force Page: Apex Controller: Use the above apex class and VF page and add the VF page to your standard page layout :
I hope this will help u.
Please let us know if this helps.
Thanks,
Nagendra
All Answers
Recently I had the similar requirements, i achieved that using VF page and VFremoting See the below code:
Visual Force Page: Apex Controller: Use the above apex class and VF page and add the VF page to your standard page layout :
I hope this will help u.
Please let us know if this helps.
Thanks,
Nagendra
My requirement first part is ok, "On creation of an event in Standard Salesforce calendar, When I select the visit type value it needs to show the corresponding color on the event, How can I achieve this".Can u help on this?