Is it Possible to make list item non editable based on one of its column value. for example i have list fees which has a column submitted.when submitted is false user can edit that item but not when it is set to true. plss help. thanks
Asked
Active
Viewed 1,346 times
2 Answers
0
The only thing you got is Item Level Security

But this does not cover your scenario.
You could achieve your scenario by changing the Ownership of an Item with code. (I do'nt think a Workflow can change it)
Limit entries
If you are not too tight about security, you could just hide the Edit form for allready entered values:
Starting point: Limit only one entry per day per user in sharepoint list
Danny '365CSI' Engelman
- 21,176
- 7
- 35
- 79
-
2Workflow can actually remove the permissions through impersonation step. Granted that it's better not to do anything than remove permissions with that. – Nisarg Shah Jun 15 '16 at 08:00
0
You could use an item updating event receiver, and check the value of your field before saving. If the value is set to true, you can just cancel the update event with an error message saying "The fees are already submitted." or something like that.
Nisarg Shah
- 957
- 1
- 11
- 24