Related question to SharePoint 2010 restricted document library contributors. Is it possible to allow contributors to a document library to add documents, edit their own documents, but only read (not edit) documents submitted by others?
Tell me more
×
SharePoint Stack Exchange is a question and answer site for
SharePoint enthusiasts. It's 100% free, no registration required.
|
Lists can set Item-level permissions in the UI using /_layouts/advsetng.aspx But document libraries dont have this option in the UI But you could try setting the same properties from powershell/code SPList.ReadSecurity = 1 http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splist.readsecurity.aspx SPList.WriteSecurity = 2 http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splist.writesecurity.aspx |
|||
|