Error trying to edit users

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 

Have more questions? Submit a request

3 Comments

  • 0
    Avatar
    Matthew McBride

    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);
    }

  • 0
    Avatar
    Matthew McBride

    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

  • 0
    Avatar
    Matthew McBride

    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

     

     

     

     

     

     

     

     

Please sign in to leave a comment.