function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ssorokassoroka 

is this possible? custom button

Is this even possible? How would I go about adding a button that links to my web app and passes the contact info?

 

b-Forceb-Force

you can pass contact info to your webapps by using custom button,

 

go to contact object ---> custom buttons --->

Create new button with content source as javascript,

Form url and Pass the contact info (Name , email ,phone number ........) as query string parameter [If you want entire contact object in web apps pass Contact Id  and retrive contact object in your web app]

using following function navigate to your web app

 

navigateToUrl(url)

 

Hope this will help you,

 

Thanks,

B