Hi,
I need to show bootstrap modal on click of a button in d365 but its opening in new window pop up. I need to show it on the same screen.
Any help would be appreciated.
Thanks in advance.
*This post is locked for comments
Hi,
I need to show bootstrap modal on click of a button in d365 but its opening in new window pop up. I need to show it on the same screen.
Any help would be appreciated.
Thanks in advance.
*This post is locked for comments
Hi Amit,
https://www.c-sharpcorner.com/article/how-to-open-popup-using-client-side-javascript-in-crm/
The above url you can check once I have not tested in current version.
You can check with the below ones too :
https://getbootstrap.com/docs/4.0/components/modal/
http://www.toplinestrategies.com/blogs/net/display-js-modal-dynamics-crm
http://blog.clickdimensions.com/display-clickdimensions-form-modal-dialog/
Thanks,
Jharana
You might want to check on dev tool console to see if anything logged at all.
One other option i used is the following bit of code on ribbon button click, its not a supported approach but it works for me.
var src = "/webresources/pa_bootstrapmodal?Data=" + encodeURIComponent("entity=" + targetEntity + "&recordId=" + Xrm.Page.data.entity.getId());
var DialogOptions = new Xrm.DialogOptions();
DialogOptions.width = 950;
DialogOptions.height = 650;
Xrm.Internal.openDialog(src, DialogOptions, null, null, function callbackFunction(result)
{
if (result)
Xrm.Page.data.refresh();
})
Thanks for the prompt reply.
I also thought of this but somehow alertjs V2 is not working.
``` Alert.showWebResource("webresourceName")```
I am using this method but its not working neither throwing any exception.
I am using using latest version of d365.
Hi
I have done the same using the following solution, which allows your to open webresource within the same window
Hope this helps
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,269 Super User 2024 Season 2
Martin Dráb 230,198 Most Valuable Professional
nmaenpaa 101,156