Can you please help me out in doing this? I am trying to get value from backing bean in my javascript on click of the command button.
this is my jsf command button
<h:commandButton id="me" value="test" action="#{ques.conversiontostring}"
onclick="mystring()"/>
this my javascript function
function mystring()
{
var mystring = window.document.getElementById("form:me").click();
alert(mystring);
}
my bean returns a string that i am storing in mystring variable, but when i alert i get null value. that would be great if someone helps in doing that. Thanks in advance.
You mean something like this?