I am new to JSF and want to have a button, which when clicked, will call a method of the backing bean. Is this possible or I have to use AJAX or something? I tried things like
<button onclick="#{myManagedBean.myMethod()}">MyButton</button>
But they didn't work. What's the normal way of doing it?
Edit:
That button is created by JqueryUI, and I am unable to change the button's type to commandButton. I am able to do only two customizations-
1. call javascript functions from that button
2. change the target of the form (inside which the button resides)
So, how can I call the backing bean method from these two ways, like from Javascript or on form submit?
Actually, Adarsh already answer very well, what I want to add here is an optional choice to calling the JSF backing bean function with jQuery, which is also convenient and you can add more complex logic when click button with help of jQuery.
You can use JSF
h:commandButton
, additionally, you can add anaction
attribute in element which calling your JSF backing bean function.E.g
<h:commandButton value="Update" id="update" action="#{myPageBean.updateMyPage}"></h:commandButton>
You may already notice the
onClick()
or similar event not shown in above example, actually this part job will handle by jQuery as event handling and process.E.g Find your button with
var updateButton = $(document.getElementById("myPage:update"));
orvar updateButton = $(#"myPage\\:update"));
Then register click event on your button with jQueryclick()
function asupdateButton.click(function() {...do whatever you want here...});
The final effect should be when you click your JSF page button, it will call JSF backing bean method as
updateMyPage
, hope it will help you.