locked
Resize a CRM form RRS feed

  • Question

  • I found this code to maximize a crm form, but that's a little much. I only want to increase it a little bit.

    Is there a recommended method to resize a form like the incident form and is there a global setting as well?

    window.moveTo(0,0);
    window.resizeTo(screen.availWidth, screen.availHeight);
    
    Tuesday, June 23, 2009 2:54 PM

Answers

  • Hi Crm User,

    Just replace it with : window.resizeTo(screen.availWidth - x, screen.availHeight - x);
    Where x is the desired value, you will have to test it with various resolutions though and you might have to test various values of x.

    There are no global settings for this as such.

    Regards,
    Chinmay
    http://metrix.blogspot.com
    Tuesday, June 23, 2009 2:57 PM