6

How can I change the column in a SharePoint list that has the link to the item and the link to the item with edit menu

Ex: I currently have "Area" that is (linked to item with edit menu), but I want to delete that column and make ID linked to item with edit menu.

enter image description here

Matt Ludwig
  • 543
  • 7
  • 14
  • 26
  • I know it is an old thread, but I think this change won't be populated if you create a new site based on the site with the change to the list? –  Mar 21 '15 at 17:41

2 Answers2

8

You can do this using SharePoint Designer.

  1. Open the site
  2. Open the list
  3. Edit "AllItems.aspx" or which view you want to modify
  4. Look for <ViewFields>
  5. Add the property linkToItem="TRUE" Note for SharePoint 2010 it is LinkToItem Example

troup.jt
  • 11
  • 3
Amal Hashim
  • 28,306
  • 5
  • 31
  • 61
1

Open AllItems.aspx (or whatever your view page is) page in sharepoint designer. Now add ListItemMenu="TRUE" in FieldRef tag of your field where you want to add view and edit menu.

Robert Lindgren
  • 24,520
  • 12
  • 53
  • 79
Tushar Chaudhari
  • 132
  • 1
  • 2
  • 12