
I am looking to mine your vast intellect and experience of CRM with a question about browser behaviour…..
Having redesigned various forms in Dynamics CRM, which means they are now in three column tab view to better display the required information (previously it was single column tab with 2 column section). So far, no problem as they display fine. However, as you will know, when clicking some links in CRM the page uses a pop-out window, for example to create an appointment or phone call. And here is the issue – the pop-out window is too narrow by default for the three column layout which then renders the forms wrong as key information is pushed down and out of view requiring the user to scroll unnecessarily:
The form should render like this:
This is not helping as I am trying to redesign the forms to make better use of the available space by removed 'white-space'. Standard browser windows work fine with all other forms, it is just those that pop-out. I have tested in current versions of both IE and Chrome.
*This post is locked for comments
I have the same question (0)Hi,
did you try to insert in Form Load this codes:
//resize window to full screen upon opening form
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
in this way I have a full resize but you can use your size.
Thanks
A.G.