by Phil Adams
29. July 2011 10:41
In CRM 3 and CRM 4 you could maximise a form to use full screen with the following:
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
In CRM 2011 this has changed you must add .top to your javascript as below:
window.top.moveTo(0,0);
window.top.resizeTo(screen.availWidth, screen.availHeight);