Enable “Link to Item” or “Edit Menu” on Any Column of the List in SharePoint
Requirement:
There is a list called “Projects” where the default title filed made hidden, and now the problem is: User wants to have the link to View Item on “Project Name” field. By default, the “Title” field of the list links to the item and edit menu options in it. If you wish to change the link to the item or edit menu options on any other column of the list – There are no options!
Solution: How to change the “Link to item” field in SharePoint?
To enable the link to the item and/or edit menu options on any of the SharePoint list columns, follow the below steps:
- Open your List view page in SharePoint Designer using “Edit File in Advanced Mode”
- Search for <ViewFields> Tag. Pick the appropriate field to have link to item functionality
- Add: LinkToItem=”TRUE” to it. If you want to have Edit Menu, then add: ListItemMenu=”TRUE” or you can add both.E.g.
<FieldRef Name="ProjectName" LinkToItem="TRUE" ListItemMenu="TRUE" />
Save and close the page. Now, if you go back to your view, the “Project Name” field will link to the DispForm.aspx page of the item!
Set Link to Item or ECB Menu on a particular column in SharePoint 2016:
While the above solution works on both SharePoint 2010 and in SharePoint 2016, found the same “LinkToItem” doesn’t work on SharePoint 2016, but “linkToItem” works (case-sensitive!)
<FieldRef Name="ProjectName" linkToItem="TRUE" ListItemMenu="TRUE" />
Here is the result in action: link to the item with edit menu in custom column!
PowerShell to Enable Context Menu on a Column
We can set the property to enable the context menu of a specific column with PowerShell:
Add-PSSnapin Microsoft.SharePoint.Powershell -ErrorAction SilentlyContinue
#Set Configuration Parameters
$WebURL = "https://intranet.crescent.com/sites/Audit/"
$ListName = "LPRequest"
$FieldName="Assigned To" #Display Name of the Field
#Get the Web, List, Item and User objects
$Web= Get-SPWeb $WebURL
$List= $web.Lists[$ListName]
#Get the column from List
$Field = $List.Fields[$FieldName]
#Update Field Settings
$Field.ListItemMenu = $True
$Field.ListItemMenuAllowed = "Required"
$Field.Update()
$List.Update()
Just an update to this feature when using SP Designer – it only works in SPO if the list is in Classic Experience. It will not work in the Modern Experience.
Hi All, does anyone know how to move an item into a folder? I am able to make folders within the list, but not able to move any item into it.
Thanks a lot
Thanks a lot.
How to enable custom link to sharepoint list column instead default link in sharepoint 2013?
My company has restructured access to SharePoint Designer. Is there anyway to achieve the “Link to Item” functionality via the SP Online UI?
What is needed for SharePoint 2013? Neither TRUE statements work, just gives the full http link instead of the description name?
When I use both list and link to items it shows the actual link and not the description I gave it??
Thanks alot, it worked like charm. There is multiple sites that points that linkToItem=”TRUE” alone does the trick, but in our case it required also ListItemMenu=”TRUE”
Thanks it worked with case sensitive
It will work for SharePoint Online also but once you do any changes in the view in UI or simply opening and saving the view in browser will make the linkToItem=”TRUE” to disappear. This the default behavior in SharePoint Online. You can overcome this by using JSLinks.
I can overcome the disappearing by using JSLinks … how? Do I paste the line linkToItem=”TRUE” into JSLInks?
How using JSLinks?
This Article is really helpful
Rajack,
Does this work in SharePoint Online also? I don’t see my column names the way you do.
Thanks,
Peter
it Works for sharePoint Online also
Hi Rajack,
Your post is great, but I have one question here, I have used the exact same properties over the field I want to have a link and a menu but I’m experiencing an interesting problem at the list there.
After a while, not sure the exact reason the property set over that field linkToItem=”TRUE” is disappearing, ListItemMenu=”TRUE” is there, only linkToItem missing.
Very interesting bug or case, not sure what’s happening and triggering such a thing.
Any idea why ?
Thanks,
Jovica