i had mapped an Integer to h:outputText (JSF 2.0)
<h:outputText id="txt_pay_days" value="#{articleBean.noOfDays}"/>
and changed the value using jquery using
$("#txt_pay_days").text("123");
the value of integer is not changed to 123 in the bean (on the server side) .
What am i doing wrong. Or is this not the right way to do it.
Any suggestions ??