Tuesday, January 19, 2016

How to add edit link in sharepoint 2013 list column


Do below steps
  • Open the AllItems.aspx page view for the specific list.
  • Search for the <ViewFields> tag
  • List item linkToItem="TRUE" to whichever column you want the link:

<ViewFields><br/>
    <FieldRef Name="Attachments"/><br/>
    <FieldRef Name="LinkTitle"/><br/>
    <FieldRef Name="Name" linkToItem="TRUE"/><br/>
    <FieldRef Name="Designation"/><br/>
    <FieldRef Name="Manager"/><br/>
</ViewFields><br/>

No comments:

Post a Comment