Extending/Adding tab to ManageUsers.aspx?

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
5/6/2010 4:34:31 AM
Gravatar
Total Posts 4

Extending/Adding tab to ManageUsers.aspx?

Hi Joe, 

I've seen we can add AminMenuLinks - Is there a similar way to extend ManageUsers with another tab?

In our case we want to connect users to some list of Company-departments they are allowed to order on behalf of.

Thanks.

5/7/2010 2:05:31 PM
Gravatar
Total Posts 35

Re: Extending/Adding tab to ManageUsers.aspx?

You could clone the ManagerUsers page in another project and copy if over in a post-build event.

5/7/2010 2:16:39 PM
Gravatar
Total Posts 18439

Re: Extending/Adding tab to ManageUsers.aspx?

Hi,

That would work but it is a complex page to have to maintain a custom version.

There is not a way to add a tab there. One alternative I can think of is to make a custom user profile property configured to use ISettingControl which is just a UserControl that supports a very simple interface. You could hard code values for the get and set interface and not even use the interface. But this would get a custom UserControl on the page in the Profile tab. From the UserControl I would just link to a custom page where the user related data would be displayed. You can easily get the current user and pass his userid or userguid to your custom page as a parameter.

The user profile documentation doesn't cover ISettingControl, but if you look in the comments in the mojoProfile.config file in the root of the site it has some examples using iSettingControlSrc

Hope it helps,

Joe

5/7/2010 2:42:52 PM
Gravatar
Total Posts 4

Re: Extending/Adding tab to ManageUsers.aspx?

Thanks guys, 

I will check it out...monday :),

Rune

You must sign in to post in the forums. This thread is closed to new posts.