C
CrassMaster
Hi All,
I am working on a web app that currently has page level security. You
have full access to edit the page otherwise you have read access.
There is a new requirement to make certain fields editable to certain
people, while the rest remains read only
my idea, is to create groups of users, with specific roles. These
roles would then have access to certain fields ( identified by an id )
so in my JSPs I would have if blocks surrounding the fields in
question. mayeb 10-20 a page.
I have a few questions?:
1. do you think it will be slow if this data is pulled back from a DB
2. is there a better way?
thanks in advance
I am working on a web app that currently has page level security. You
have full access to edit the page otherwise you have read access.
There is a new requirement to make certain fields editable to certain
people, while the rest remains read only
my idea, is to create groups of users, with specific roles. These
roles would then have access to certain fields ( identified by an id )
so in my JSPs I would have if blocks surrounding the fields in
question. mayeb 10-20 a page.
I have a few questions?:
1. do you think it will be slow if this data is pulled back from a DB
2. is there a better way?
thanks in advance