_spBodyOnLoadFunctionNames: Generally, ASP.NET 2.0 Master page concept is used for sharepoint pages and the “body ” is defined in master page. So, the content page is not able to add function to the body’s onload event directly. In order to work around this limitation, SharePoint provides the “_spBodyOnLoadFunctionNames” array. When the body is loaded, the onload event handler executes each function whose name is contained in this array. We added “myFunction” to the array so that it would run when the body’s onload event fires.
_spBodyOnLoadFunctionNames.push("myFunction ");
To fix the javascript error: View source of sharepoint page from browser.
1. Make sure in the head tag, init.js is included.
<script type="text/javascript" language="javascript" src="/_layouts/1033/init.js?rev=VhAxGc3rkK79RM90tibDzw%3D%3D"></script>
2. Body onload is properly defined.
<BODY scroll="yes" onload="javascript:if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();">
If these are not defined then it causes javascript error.
Hope, It helps.
_spbodyonloadfunctionnames is undefined Javascript Error in sharepoint
Tags:
MOSS 2007,
Sharepoint
Related Posts :
MOSS 2007
- Active Directory group in sharepoint
- Add/Remove Assembly to WSP (VSEWSS)
- Default view metadata(columns) in sharepoint custom search result page
- Sharepoint search in document library/list programmatically (using C#)
- SPContext.Current.Site = NullReferenceException for asp.net page in sharepoint
- Add custom field type to sharepoint list and set CustomProperty using c#
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment