CRM 2011 Error On Editing Multiple Record


*Note edit multiple record method


 //Will be having error during bulk edit/ multiple edit.
 function onload() {
    hideSections("vw_assettype", "Asset");
    hideSections("vw_purchasetype", "Hire");
 }

//Free from having error during bulk edit/ multiple edit.

 function onLoad() {
    hideSections("vw_assettype", "Asset");
    hideSections("vw_purchasetype", "Hire");
 }


Take note
This is what i tested and retrieve from when i use onload script on my javascript to trigger at form load event handlers. The bulk edit will prompt out error message.

Error msg such as unable to edit the form. It is javascript error. 

I check and check at last the error was on the word onload on form load event handler. When i change the onload to onLoad the bulk edit and everything work perfectly.

Event handlers Onload Event with javascript onload. The alphabet l in onload is not in capital.
Event handlers Onload Event with javascript onLoad. The alphabet L in onLoad is in capital.

0 comments: