Notifications
Clear all
Topic starter
So I basically would like a button to auto-click when the form is opened. Is this even possible? If so how?
Thanks in advance!
Posted : April 17, 2015 6:32 am
Why not just execute the code behind the button when the form is opened?
{ ! <some code>}
Posted : April 17, 2015 6:46 am
I agree with jfitzmd.
You can write a function in the mel area on the right in the vfe form, with a watcher (!) to call the function each time the form is opened.
{!fnButtonStuff()} // calls the function
{!fn fnButtonStuff() {
... whatever the button would have done
}}
- Beverly
Posted : April 17, 2015 6:58 am