Como posso passar valor de jQuery para jsf h: inputText e Backing Bean
Eu tento passar valor de jquery para jsf e Backing Bean. E no processo, eu não quero usar f: ajax do jsf-Tag.
javaScript ou jQuery
<script>
var myvalue = null;
$('.classname').live('click',function(){
myvalue = "thisvalue"+xyz;
// update myvalue in jsf inputtext and in bean
});
</script>
JSF - Conteúdo
<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>
Conteúdo do Feijão
private String changevalue;
public String getChangevalue() {
return changevalue;
}
public void setChangevalue(String changevalue) {
this.changevalue = changevalue;
}