up vote 1 down vote favorite
share [g+] share [fb]

Metadata seems to be used frequently to describe a SharePoint list's structure. That structure allows the storage of data at the list item level.

How can I specify information about the list itself without relying on an additional column?

Ideally I want something like SPList.Properties ["Mykey"] = "MyValue"

PropertiesXml isn't settable but is there any way to alter the data it returns?

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

There is no property bag on the SPList object itself, however you can use the one on SPList.RootFolder. Its SPFolder object has a Properties property.

link|improve this answer
Works perfectly. I also needed to call update on the SPFolder object after adding a new key/value pair (didn't Update() the list). – Michhes Jul 31 '09 at 11:19
Here's how I implemented this: blog.mediawhole.com/2009/07/… – Michhes Jul 31 '09 at 11:49
Nice - thanks for blogging about it! – Alex Angas Jul 31 '09 at 11:53
Great, but that properties are not stored in list templates. So I don't know how to allow end-users to create lists with them. Does anybody have any idea? – Dmitry Tashkinov Feb 27 '10 at 16:35
feedback

As an alternative to Alex' direct answer, you could store the metadata on your lists in a separate dedicated, possibly hidden, list.

link|improve this answer
This idea has a lot of merit; the only hassle is defining and provisioning the list (although a two-column name/value style list would be reusable). I'd mark this as the second answer if I could! – Michhes Jul 31 '09 at 9:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.