I have a requirement like this,
Making fields in model as read or write basing on different roles
Suppose in a model i have 15 fields then
User1 with Role1 can edit {Fields 1 to 5; but can view(read only) Fields 6 to 15 } and
User2 with Role2 can edit {Fields 4 ,5,6; but can view(read only) Fields 1 to 3 , 7 to 15}
I googled a lot but i could not find solution
I found a link http://www.codeproject.com/Tips/403921/Field-Based-Security-in-ASP-NET-MVC-3-for-Differen
but using articles we have to create edit templates for different controls to make it read / write
This is one of major task in the project.
Do you have any solution for this.
Thanks, Vijay