0
Good morning guys, I need help in the example below:
<rich:select value="#{bdaBean.argosDocum.localizacaoObra}" disabled="#{not(bdaBean.usuarioPodeAtualizarBDA)}" height="20px" style="padding-right:10px; margin-botton:30px;" enableManualInput="true" itemValue="bdaBean.listaCodob">
<f:selectItems value="#{bdaBean.listaCodob}" />
</rich:select>
<h:inputText value="#{bdaBean.argosDocum.localizacaoObra.item}" disabled="#{not(bdaBean.usuarioPodeAtualizarBDA)}" style="padding-bottom: -; border-bottom-width: 1px; margin-top: 8px; height:15px;" />
</h:panelGrid>
In bdaBean.argosDocum.locationObra comes an initial default value from this list, I would like to change this value after selecting some element from this list to change the item in input text automatically.
How should I do?