
Hello!
How can i open a custom window with "xrm.navigation" ? Some sort of Dialog box, but not alert or info.
I hava a html -file wich i want to display there!
Something like this: Xrm.Utility.openDialog(...) but this Xrm.Navigation.openDialog(...)
Please, help!
There is no dialog box as I stated in your previous thread. You will need to use Xrm.Navigation.openWebResource see docs.microsoft.com/.../openwebresource
You will also need to read up on what you can do from there the Xrm context will probably not be accessible to you so you will have to use the webapi to retrieve and update data with any parameters such as entity type and record id passed in as parameters.
However, given that you are creating a product for certification I don't believe those issues should be a big hurdle for you to resolve...
var windowOptions = { openInNewWindow: true, height: 400, width: 400 };
var data = {parameter1: value , parameter2: value};
Xrm.Navigation.openWebResource("new_webResource.htm",windowOptions, data);