Hello All,
I am working with V9.1 where I observed that Xrm.Navigation.openForm() is not working for an existing record instead I used the deprecated way Xrm.Utility.openEntityForm() then it works as expected.
It is opening the record but all the fields are blank, so I tried the deprecated way then it works.
var entityFormOptions = {}; entityFormOptions["openInNewWindow"] = true; entityFormOptions["entityName"] = myEntity; entityFormOptions["entityId "] = myEntityGuid; Xrm.Navigation.openForm(entityFormOptions);
Any suggestions?
Thanks,
Indrasheker
*This post is locked for comments