Skip to main content

What's (on) your menu ?

Imagine a restaurant which serves great food, preferably your own favorite restaurant. Now imagine that this same restaurant, has your own personalized menu. Wouldn't that be great. You could just go there and eat whatever you feel like at that moment.

The same goes for the application you build. If you use ADF-Faces and a panelpage with menu facets to show the menu in your application, the framework tells you how your menu works, and almost what it looks like.

So this is what my menu looked like.



The ADF-faces menu has a couple of annoying features. First of all the size of the Menubar. If you have about 10 menu items (or less but with very long labels) the end users have to scroll to the right to see all items. You would easily miss the menu items on the far right. End users just love the pulldown menu's that they are used to. They use it in OracleForms, they use it in TwoLetterWord Office, and so on.

Secondly, the faces-config, in which the menu is configured will load only once.
Immagine what could happen if your menu is being constructed from a database table with roles and permissions per user: "An admistator revokes permission from a given users, and tells him to log off the system to activate this new privilige". Say what ?!. I'll explain this in a later post, and I will describe how to implement database driven menu security.

Here is how the pulldown menu can be implemented.

Copy lib's to be able to use myfaces menu.


Create the namespace, xmlns:t="http://myfaces.apache.org/tomahawk"
Create an extension filter in the web.xml

And this is my new menu.


So what about the "own personalized menu" that I mentioned in the beginning of this post ? I even found a way to fix that. Not rocketscience though; just use a switcher in the menu facets and add a "Customizer" to your application. Your menu and your look and feel wil change "on the fly". The customizer contains SelectOneChoice listboxes to set the values of skin and menutype:


<af:selectOneChoice label="Select Menu type"
value="#{sessionScope.menuType}"
onchange="form.submit();">


And in the page you use the switcher to display either of the menutypes.

<f:facet name="menu2">
<af:switcher facetName="#{sessionScope.menuType}"
defaultFacet="ADF-Faces">
<f:facet name="ADF-Faces">
<af:region id="menu2"
regionType="nl.kees.cursus.regions.common.UMMenu2"/>
</f:facet>
<f:facet name="My-Faces">
<af:region id="menu7"
regionType="nl.kees.cursus.regions.common.UMMenuPull"/>
</f:facet>
</af:switcher>
</f:facet>

After that it works just great. Below you see the 'deault' ADF look and feel.


And when you set your "own" customizations, here's what you get:


I really had fun creating this, and after showing this to some of my coworkers, even they liked it ;-)

Comments

Seb said…
Hi,

Interesting post... Would you mond sharing the sample application ?

Thanks,
Seb.
Luc Bors said…
Hi Seb,

I'll be in London for the next couple of days (Oracle Develop; see http://www.oracle.com/technology/events/develop2007/index.html).
Let me know what you are interested in. If it's the menu, or the switching,or both. I have to strip some (confidential) code from te sample application, but after that,I'll be glad to share it !
Give me some time to fix this.
Lucas Jellema said…
Hi Luc,

That is great article! Thanks for sharing this. I like your style of writing - building the story in a very comprehensive way.

groeten,


Lucas
Luc Bors said…
Thanks for your kind words Lucas !
Unknown said…
Hi Luc,

Thanks for sharing this.

Could you share a sample application ?

Thanks again,

Wilson
Luc Bors said…
Sorry guys,

The silence has a reason.
I'll be back in about one week !
I'm enjoying some private time with my family.
VB said…
Hi,

Please send step by step to create pull down menus. Share the doc as well as code.

Thanks & Regards
Vimalan Balan
Anonymous said…
Hi Luc
Can we set menu1 facet in panelpage left justified instead of right justified.
Anonymous said…
Hi Luc,

Very interesting - Could you please share a sample application? I am interested in both the menu and switcher.

Thanks a lot!
Luc Bors said…
Hi you all. I've just started a new job so I was very busy. You can download a sample here. Navigation isn't working the way it should, but you'll get the idea. Maybe I'll be able to fix it.

Popular posts from this blog

ADF 12.1.3 : Implementing Default Table Filter Values

In one of my projects I ran into a requirement where the end user needs to be presented with default values in the table filters. This sounds like it is a common requirement, which is easy to implement. However it proved to be not so common, as it is not in the documentation nor are there any Blogpost to be found that talk about this feature. In this blogpost I describe how to implement this. The Use Case Explained Users of the application would typically enter today's date in a table filter in order to get all data that is valid for today. They do this each and every time. In order to facilitate them I want to have the table filter pre-filled with today's date (at the moment of writing July 31st 2015). So whenever the page is displayed, it should display 'today' in the table filter and execute the query accordingly. The problem is to get the value in the filter without the user typing it. Lets first take a look at how the ADF Search and Filters are implemented by

How to: Adding Speech to Oracle Digital Assistant; Talk to me Goose

At Oracle Code One in October, and also on DOAG in Nurnberg Germany in November I presented on how to go beyond your regular chatbot. This presentation contained a part on exposing your Oracle Digital Assistant over Alexa and also a part on face recognition. I finally found the time to blog about it. In this blogpost I will share details of the Alexa implementation in this solution. Typically there are 3 area's of interest which I will explain. Webhook Code to enable communication between Alexa and Oracle Digital Assistant Alexa Digital Assistant (DA) Explaining the Webhook Code The overall setup contains of Alexa, a NodeJS webhook and an Oracle Digital Assistant. The webhook code will be responsible for receiving and transforming the JSON payload from the Alexa request. The transformed will be sent to a webhook configured on Oracle DA. The DA will send its response back to the webhook, which will transform into a format that can be used by an Alexa device. To code

ADF 11g Quicky 3 : Adding Error, Info and Warning messages

How can we add a message programatically ? Last week I got this question for the second time in a months time. I decided to write a short blogpost on how this works. Adding messages is very easy, you just need to know how it works. You can add a message to your faces context by creating a new FacesMessage. Set the severity (ERROR, WARNING, INFO or FATAL ), set the message text, and if nessecary a message detail. The fragment below shows the code for an ERROR message. 1: public void setMessagesErr(ActionEvent actionEvent) { 2: String msg = "This is a message"; 3: AdfFacesContext adfFacesContext = null; 4: adfFacesContext = AdfFacesContext.getCurrentInstance(); 5: FacesContext ctx = FacesContext.getCurrentInstance(); 6: FacesMessage fm = 7: new FacesMessage(FacesMessage.SEVERITY_ERROR, msg, ""); 8: ctx.addMessage(null, fm); 9: } I created a simple page with a couple of buttons to show the result of setting the message. When the but