I was having a problem with Meeting Workspaces today. The links to each meeting instance on the left Quick Launch were not working, and every time we clicked on one of them, we would get a JavaScript error: ‘g_InstanceID’ is undefined.
At first, I assumed that my CSS must be hiding a control that was required for the navigation links to work. Then I found a post by Mike Monjeau entitled MOSS – How to fix recurring Meeting Workspace error: ‘g_InstanceID’ is undefined that describes the fix for this.
Basically, when you use a master page other than default.master for a Meeting Workspace site, you can get this error. If you add the following lines into your new master page, you can solve the problem:
- Add the following line of code under the <%@ Import Namespace=”Microsoft.SharePoint” %> tag:
<%@ Register Tagprefix="Meetings" Namespace="Microsoft.SharePoint.Meetings" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
- Add the following line of code after the opening <body> tag:
<Meetings:PropertyBag runat="server"/>
1 ping
Fun With My Blog Stats « Marc D Anderson’s Blog
April 11, 2009 at 8:21 am (UTC -4) Link to this comment
[...] bunch of hits on some old, seemingly useless post. For a few days last week, my post about How to Fix Recurring Meeting Workspace Error: ‘g_InstanceID’ is undefined got a bunch of hits. I wondered if maybe there was a new hotfix or something that might have [...]