Abhinav
Abhinav

Reputation: 55

Get list item by title

Can anyone help me with this problem. The thing is, I have list and in which there are items. Normally we access the list items by ID and not by title.

/Lists/Issue%20Log/DispForm.aspx?ID=118&ContentTypeId=0x010001B2A64F3F5AF64BB47CC5044286787E

we got new requirement to access the list item by TITLE

/Lists/Issue%20Log/DispForm.aspx?Title=Help me to call list item by title.

By access Item with title is not working. Can anyone pls let me know what I have to do to get the list item by Title.

Upvotes: 1

Views: 1561

Answers (2)

Ahmed Hasn.
Ahmed Hasn.

Reputation: 330

it is possible try it like this:

http://yourSharePoint.com/Lists/ListName/DispForm.aspx?Title=YourItemTitle

Hope it helps

Upvotes: 0

dinos.kon
dinos.kon

Reputation: 61

I would bet that it is not possible out of the box.

  1. You could add a filter WebPart and help them locate their Item more easily. Or
  2. You could create a WebPart that reads the URL Query does a lookup (provided titles are unique) and redirects the page to display the desired Item.

good luck!

Upvotes: 1

Related Questions