¿Cómo puedo pasar el valor de jQuery a jsf h: inputText y Backing Bean?
Intento pasar el valor de jquery a jsf y Backing Bean. Y en el proceso, no quiero usar f: ajax de jsf-Tag.
javaScript o jQuery
<script>
var myvalue = null;
$('.classname').live('click',function(){
myvalue = "thisvalue"+xyz;
// update myvalue in jsf inputtext and in bean
});
</script>
JSF - Contenido
<h:form id="myid" prependId="false">
<h:inputText id="fragment" value="#{myBean.changevalue}">
<!-- please do not use here f:ajax or p:ajax so on. -->
</h:form>
Contenido de frijol
private String changevalue;
public String getChangevalue() {
return changevalue;
}
public void setChangevalue(String changevalue) {
this.changevalue = changevalue;
}