Hello everyone,
I have a question.
How can I open an url address through a button inside the form of an entity?
Thank you very much
*This post is locked for comments
Hello everyone,
I have a question.
How can I open an url address through a button inside the form of an entity?
Thank you very much
*This post is locked for comments
thank you very much worked very well.
Hi ,
Do you want to open the url inside the form or in new window ?
For new window you can open the window using window.open as suggested by Andrew and Arpit.
In addition if you want to open an external URL inside the form the you can create an html web resource with an iframe and on button click event you can set the iframe src like below.
document.getElementById("MyFrame").src="https://bing.com";
You can also add directly the external URL and show hide the content of the Iframe .
please refer below
www.inogic.com/.../different-areas-in-dynamics-crm-where-users-can-access-external-pages
Yes you can use window.open('http://arpitmscrmhunt.blogspot.com');
window.open has following features also. Can take advantage based on your requirement:
window.open("", "", "width=200,height=100");
window.open("http://arpitmscrmhunt.blogspot.com", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=400");
//Open a new window called "MsgWindow", and write some text into it:
var myWindow = window.open("", "MsgWindow", "width=200,height=100");
myWindow.document.write("<p>This is 'MsgWindow'. I am 200px wide and 100px tall!</p>");
function openWin() {
myWindow = window.open("", "myWindow", "width=200,height=100"); // Opens a new window
}
function closeWin() {
myWindow.close(); // Closes the new window
}
Hope it helps.
If my answer helped to resolve your issue, kindly verify it by clicking 'Yes'. It would be helpful to the other community members seeking to resolve a similar issue.
Cheers
Arpit
https://arpitmscrmhunt.blogspot.in
Hello,
Just add following code - window.open("https://google.com"); to your button click handler.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156