vote up 0 vote down star

In a list where items only can be changed by owner or admin how can I check by code if a user can edit the item.

I try

item.DoesUserHavePermissions(SPBasePermissions.EditListItems);

it will return True as the user can add and edit items in list.

flag

67% accept rate
As a dirty fix I now check who created the item and compare to current user. – Walm3864 Nov 3 '08 at 15:10

1 Answer

vote up 1 vote down

Checking the user against author field may be the only way to go.

Alternatively you can limit the list of items the user can try to edit by making a query that only brings back items they are the author of unless they have broader rights.

Check for broader rights using the SPRoleDefinition and SPRoleAssignment classes.

Other wise just try the edit and catch the exception and raise it back to the user.

link|flag

Your Answer

Get an OpenID
or

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