Tuesday, May 28, 2013

Moving the notes section to the top of the page

When you move the notes section to the top of the form and when the form is loaded, it automatically scrolls down and user has to manually scroll up to access the notes section.

If you want to see the notes section without scrolling please proceed the below steps.

1. If your have already added JQuery web resource to the form then just copy below code to a function and call at form- onload

$("#crmFormTabContainer").scrollTop(0); 


2. Or if you prefer the javascrips then just copy below code to a function and call at form- onload

document.getElementById('crmFormTabContainer').scrollTop = 0;