Please look at the following Code Snippet:
<h:form>
<h:panelGrid columns="2">
<h:inputText value="#{vehicleBean.pin}" />
<a4j:commandButton action="#{vehicleBean.loadVehiclesByPin}" render="results"/>
</h:panelGrid>
</h:form>
<a4j:outputPanel id="results">
<rich:dataTable value="#{vehicleBean.vehicles}" rendered="#{not empty vehicleBean.vehicles}">
...
</rich:dataTable>
</a4j:outputPanel>
When I press the button an Ajax request is sent to load some business entities. They are displayed in a rich:dataTable which is only rendered if the corresponding array is not empty.
This works for me in Chrome an Firefox 4 but not in IE9. But I'm pretty sure it's my fault and not IE's ;-)
So please tell me:
- What is the correct approach to solve this kind of problem (with a conditionally rendered element)?
- Which element(s) should I re-render?
- The commandButton also has a execute attribute: When and why do I have to use this attribute?
Greetings Sebi