Hello,
I have the following list
ID | Type | Name | Address | Phone
--------------------------------
10 | foo1 | abcd | street1 | 123
11 | foo2 | defg | street2 | 345
12 | foo3 | xyzz | street3 | 456
My question is, can I based on Type in the list make some fields editable and some protected? E.g Name is editable but Address and Phone is NOT editable for foo1. Address is editable for foo2, but NOT Name and Phone. Phone is editable for foo3, but NOT Name and Address.
Thanks
Mikael