I'm getting: "An error has occurred with the data fetch. Please refresh the page." whenever I try and edit a user in the authorization store. (Page: MangUsrsInAuthStore.aspx)
Thanks,
Mike
I'm getting: "An error has occurred with the data fetch. Please refresh the page." whenever I try and edit a user in the authorization store. (Page: MangUsrsInAuthStore.aspx)
Thanks,
Mike
Is this a JavaScript (gray pop-up box) error or a SharePoint page error?
If this is a JavaScript error please take a look at the following page...
C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\SPSolutions\Delegation\MenuTemplate.js
Replace the AssertMenuItemTemplateValue function with the value below...
/*
* True if the token value of the key name matches the expected value
*/
function AssertMenuItemTemplateValue(menuItemTemplateObj, keyName, expectedValue)
{
try
{
// Get the menu item template
var menuItemTemplate = new MenuItemTemplate(menuItemTemplateObj);
// Get the token value
var tokenValue = menuItemTemplate.getTokenValue(keyName);
}
catch(e)
{
return false;
}
// Compare values
return (tokenValue == expectedValue);
}
Looks like the code you sent wasn't different than what was already in the file. However, figured out the issue. Firefox was the problem. Works fine in IE.
Sorry to bother you.
Thanks,
Mike
What's wrong with getting it to work with FF? There's no reason this shouldn't be fixed. Or at least give a more descriptive error.
mbenoit:
Looks like the code you sent wasn't different than what was already in the file. However, figured out the issue. Firefox was the problem. Works fine in IE.
Sorry to bother you.
Thanks,
Mike
3 Comments