Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand, how to set action to rich:menuItem component, but can i somehow set action on rich:dropDownMenu? Parameter action cannot be set in rich:dropDownMenu component, only in dropDownMenus child rich:menuItem. Maybe there is another approach?

Action setting to rich:menuItem:

<rich:menuItem submitMode="server" value="#{msg.someValue}" action="#{billdoc.list}">

I need to execute some action #{billdoc.someAction}, when user clicks on dropDownMenu.

share|improve this question

1 Answer

If you are really sure you need this (it's rather strange), you can use <rich:dropDownMenu onexpand="myFunction()", and define myFunction as:

<a4j:jsFunction name="myFunction" action="#{billdoc.someAction}" />
share|improve this answer
1  
Dropdownmenu hasn't onClick method? – Yurish Dec 16 '09 at 8:22
it seems it doesn't have. But why not use onexpand? – Bozho Dec 16 '09 at 8:23
I have menu which can be represented as: Documents -> Bills, Contracts. When user clicks on Bills, he gets list with bill documents, when contracts, then contract documents. But when he clicks on Documents itself, he gets list with bills and contracts. Now i have Bills and Contracts as menuItems, but Documents as dropDownMenu. – Yurish Dec 16 '09 at 8:26
Get it this way, if user clicks on Bills, then Bills got selected, and a onchange event got fired, isn't it? Then on onchange event you can call a function, which would get the selected item, and based on that show the appropriate thing. i.e. if selected item is Bills, show Bill documents, etc.. Hope this made the thing clear. – Adeel Ansari Dec 16 '09 at 9:02
Not exactly. dropDownMenu doesn't have onchange property. – Yurish Dec 16 '09 at 9:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.