Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I don't do RF/A4J, but this look much like an error in their JS/Ajax code. Try IE7/8 and if it works, then it's definitely a bug in their JS/Ajax code that it is doing a browsercheck instead of a featurecheck. IE9 has namely changed a lot in JS engine to comply the standards better. You should then try to upgrade to latest RF/A4J or if in vain, report this issue to them. All with all, you should trust the behaviour of Gecko/Webkit browsers since they are very mature with regard to standards compatibility (in contrary to IE8 and older). – BalusC Apr 12 '11 at 14:06

1 Answer

RichFaces 3.x does not support IE9, refer to this post: http://community.jboss.org/thread/156720

You can upgrade to RF 4, or implement a filter to force IE9 to run in compatibility mode:

public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain) throws IOException, ServletException {
    HttpServletResponse resp = (HttpServletResponse) response;
    resp.addHeader("X-UA-Compatible", "IE=EmulateIE8");
    chain.doFilter(request, resp);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.