What's the best way to have menu driven module

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.
3/16/2011 11:21:01 PM
Gravatar
Total Posts 5

What's the best way to have menu driven module

What is the best way to have a leftmost menu for a new module.  Should I develop a "menu" feature for my module that I can place on a page in the "Left Pane?"..  Can/should I make this "menu" feature in the left pane alter the contents of the Center pane?  Are there examples or documentation for this?  Or am I looking at this all wrong?  Is there a built in side menu system for this?

3/17/2011 7:32:54 AM
Gravatar
Total Posts 18439

Re: What's the best way to have menu driven module

The part of a feature that plugs into the cms page is what we call the feature module. It can link to supporting pages, but it should not be trying to talk to other controls that may or may not exist on the cms page, the feature module should be self contained, it can only be in one content pane of the page you cannot have part of it in one pane and part in another.

You can do layout within your feature module though, so you put it in the center and use the whole width and internal to your feature module you can use whatever markup you like to achieve a column layout within the control. You can build menus any way you like either just as html or by using menu controls that you databind or populate yourself.

There is nothing built in that does what I think you are looking for. Features like WebStore have an admin menu but it is on a separate supporting page not in the feature module and it is just a simple list.

Hope it helps,

Joe

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