TRINIDAD: ri-renderizzare un tr:inputText al cambiamento di tr:selectOneChoice
Soluzione Funzionante:
<tr:selectOneChoice id="campo" value="#{...}" autoSubmit="true">
<f:selectItems id="elencoCampi" value="#{...}"/>
</tr:selectOneChoice>
<tr:panelGroupLayout partialTriggers="campo">
<tr:outputText value="#{...}" escape="false"/>
</tr:panelGroupLayout>
Soluzione Non Funzionante:
<tr:selectOneChoice id="campo" value="#{...}" autoSubmit="true">
<f:selectItems id="elencoCampi" value="#{...}"/>
</tr:selectOneChoice>
<tr:outputText partialTriggers="campo" value="#{...}" escape="false"/>
Commenti