Hi, I am using the latest method in d365 v9 UCI to open the html webresource:
Xrm.Navigation.openWebResource
The issue is i want it to open at the center of the screen, by default it appears at the corner. windowOptions is only taking height and width. Can anyone help me on this please ?
var windowOptions = { height: 200, width: 600 };
Xrm.Navigation.openWebResource(webresourceName, windowOptions, param)
//P.S i tried with top and left but no luck ... var windowOptions = { height: 200, width: 600, left: 430, top: 271 }