Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Question regardin hideing menu element

Vote:
 

Hello

Lets say I have X nr of users that I want to show a sub menu element for. All other users will not se this sub menu element.

We can say that these users (UsersX) are stored in a hashmap<id,userobject> that is cached and I have got all id-info in code behind.

If I put UsersX in a specific role (lets say RoleY) and are saying that current page (link in sub menu element) only should be readable for users that are in RoleY this sub menu element will be visible but inactive for all other users or? What I want to acheive is that current sub menu elelent only should be visible for users belonging to RoleY...is that possible? 

Is this the way to go to use roles or? What should I do?

Thanks ind advance!

#43845
Sep 25, 2010 19:29
Vote:
 

It depends on how your menu is built. If it uses a pagetree control for example, the access rights will filter out the pages which the user does not have access to. If it's constructed in some other way, for example if you compile a PagaDataCollection to use in a ListView or something like that, you can use Filters.FilterForVisitor to do a one-step filtering for access rights, publish state and the visible in menu property.

You could put those users in a certain role. A different approach could be to introduce a Virtual Role in which you can perform any logic you like to determine at run-time if the user should be in the role or not.

As I see it, you have to ask yourself why you are hiding the menu item for some users. If you don't want the users to be able to see the page, neither by navigating to it in the menu or by somehow getting the direct URL, then requiring users to be in a certain role to have read access rights is probably the way to go. This is what roles are meant to do. If for some other reason you want to hide the menu element but not strictly limiting the users access to the page, you should use a different approach. For example, if you're using a PageTree you can cook into the Filter event and do any filtering you like based on the currently logged-in user.

#43846
Sep 26, 2010 15:51
This thread is locked and should be used for reference only. Please use the Episerver CMS 7 and earlier versions forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.