vote up 3 vote down star

Is it possible to rename a list in Sharepoint 2007 using the web interface? I would like navigation url to change as well.

I have tried change the name using the settings option on the list. This will change the title but not the navigation url.

flag

1  
Programmatically? ;-) – Matt Hamilton Apr 30 at 1:23

6 Answers

vote up 3 vote down check

I'm not sure that changing the url is possible through the web UI.

However, you could probably save the list as a template, include the content as part of that template, and then delete the list. Finally, apply the template to get a newly named (with new url) list.

link|flag
I've done this and it works, however, list item creators and create dates get reset to whoever created the new list, and when it was created. – Ryan Michela May 4 at 17:25
vote up 2 vote down

You can definitely change the URL using SharePoint Designer. I'm quite sure you can also do this programmatically.

link|flag
vote up 1 vote down

The list will get the name you created it with so create the list and then set the localised name afterwards

if (site.Lists.Exists(Constants.MyListName, out myList))
{
    myList.Description = Resources.My_Lists.My_List_Description;
    logger.Write("List {0} already exists on site {1}", Constants.ListNames.MYLIST,site.Url);
}
else
{
    Guid listGuid = site.Lists.Add(Constants.ListNames.MYLIST,   
                    Resources.My_Lists.MyList_List_Description,
                    SPListTemplateType.DocumentLibrary);
    myList = site.Lists.GetList(listGuid, false);
    logger.Write("Created list {0} on site {1}", Constants.ListNames.MYLIST, site.Url);
}
myList.NoCrawl = true;
myList.Title = Resources.My_Lists.My_Inbox_List_DisplayName;
myList.EnableVersioning = true;
myList.EnableMinorVersions = false;
myList.Update();

When you then need the list you get it using the internal Name which will be the same name as in Constants.ListNames.MYLIST

list = (from SPList l in web.Lists
                        where l.RootFolder.Name.Equals(listInternalName, StringComparison.InvariantCulture)
                        select l).FirstOrDefault();

I think it is a good practice to stay away from the Display name see this article regarding problems with fields in Sharepoint

http://www.buro9.com/blog/2007/02/26/sharepoint-splistitem-quirks/

link|flag
vote up 0 vote down

The internal name for lists is pretty messy and killing it in code or by manipulating the files may break some custom web parts, workflows, or cause orphaning. For these reasons, I would leave the internal name alone rather than risk causing something to break in the name of vanity. If the client was requesting the change, however, I would save the template as Martin says and use that to rename your list.

link|flag
vote up 0 vote down

Once you create a list or doc library, the url cannot be changed using the web interface - you're stuck with it unless you modify it using something like Powershell or SharePoint Designer.

I highly recommend making it a habit to initially create the lists/libraries with a shortened/clean url, then immediately renaming the lists/libraries to its "nice" name for everyone to read clearly.

link|flag
vote up 0 vote down

It looks like you can change the url in Windows Explorer. The library/list still exist and can be edited.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.