3

Currently to open a file you have to click on name. Is there a way to open this file by clicking on another column instead of name? Thanks

Michael Downey
  • 277
  • 1
  • 3
  • 14

1 Answers1

2
  • Open the AllItems.aspx page for the specific list.

  • Search for the tag

  • List item LinkToItem="TRUE" to whichever column you want the link:

    <ViewFields> <FieldRef Name="Attachments"/> <FieldRef Name="LinkTitle"/><br/> <FieldRef Name="linkThisColumn" LinkToItem="TRUE"/> <FieldRef Name="data_x0020_column"/> <FieldRef Name="Another_x0020_column"/> </ViewFields>

Change Title (linked to item with edit menu) to different column

Waqas Sarwar MVP
  • 57,008
  • 17
  • 43
  • 79