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

I'm new to jsf.

I would like to extend HtmlCommandButton in order to override the default behaviour of onmouseover event.

Event: OnMouseOver Requirement: "right click" kind of functionality is expected with customized menu depending on user's role.

Would like to have expert opinions on how to proceed with this requirement.

Thanks in advance, Arun

share|improve this question

1 Answer

As you're already using JSF 2.0, I think it's much easier to create a composite component instead of a custom component. You then need only one XHTML file instead of a whole component class and/or a renderer class along with some XML config file (changes).

The composite component implementation may then look like:

<cc:implementation>
    <h:commandButton onmouseover="yourRightClickFunction()" ... />
</cc:implementation>

Then you can just use <my:commandButton> instead of <h:commandButton>.

share|improve this answer

Your Answer

 
discard

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