Reputation: 4290
I'm trying to restrict the Edit List Form in SharePoint to only allow users to edit their own data.
Any suggestions?
Thanks, James
Upvotes: 2
Views: 7956
Reputation: 7056
Assuming you want to restrict the entire list item to the user who created it:
Upvotes: 2
Reputation: 3282
If you're wanting to allow them to edit only items they've created, you can use a SharePoint Designer Workflow and the custom workflow activities from here: http://spdactivities.codeplex.com/
... to modify the permissions on the item when it's created, allowing the user who created it Contribute access and everyone else Read.
Upvotes: 0