Hello,
Just wondering if anyone knew how or if it was possible to make a button open a website?
You would choose run process in the action button drop down options and use the command RUNSHELLOPEN("http://www.google.com")
Hope that helps!
Amy
Thank You!
This worked 🙂
Yes, go to Administration > System > User and Resource Management > Users > User Management
Select your account > Security > Administration > Click Expland for Custom Module Extensibility
Check on Setup Module nav Panel Link
Check on Setup Module Ribbon Commands
Click Ok
Logoff all the way from CPS. And Re-Login to CPS.
You should now have access to add links to the left and top navigations. Look below::::
If you are planning to use HTML form, the mdObject have 2methods:
<button onclick="javascript:$mdObject.emr.window.open('http://google.com/')">Google</button>
or
<button onclick="javascript:$mdObject.emr.window.openDialog('http://google.com/')">Google</button>
You also can do GET or POST to page with parameters.