Friday, August 30, 2013

"Click Here to Load the Chart" Error in CRM 2011

On the onload script of the form, add the following function and call the function, while loading the form. function SubGridLoad() { $(document).ready(function () { var links = $("a.ms-crm-List-LoadOnDemand") for (i = 0; i <= links.length; i++) { try { links[i].click(); } catch (e) { // Handle for other errors } } } ); } This will resolve the problem. Thanks, Srinivasa

No comments: