I am opening specific view in a new window using following JS in CRM 2013
var url = Xrm.Page.context.getServerUrl() + "/main.aspx?etn=" + [entityname] + "&pagetype=entitylist&viewid={" + [viewguid] + "}";
window.open(url, "_blank");
All works well except:
(1) New window doesn't load the main menu
(2) When I open records from the view in new window, they open in another new window rather than loading in same window.
I have to open the view in new window but then opening of any records must load in same window. Have any body experienced this?
Any ideas to achieve this appreciated.
Thanks,
Amit