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

Does the nesting of elements and multiple forms affect the capabilities of rerendering with a a4j:commandButton?

i have something like:

<ui:panelGrid>
    <h:form id="1">
         <a4j:commandButton rerender="1,2,3" />
    </h:form>
</ui:panelGrid>
<ui:panelGrid>
    <h:form id="2">
    </h:form>
    <h:form id="3">
    </h:form>
</ui:panelGrid>

Currently it does not want to reRender anything, only the action on it will get executed. Also i have in my forms . Would that affect anything ? I use the same bean name in every keepAlive tag I'm new to all these.

share|improve this question
I'm not sure about the RichFaces part, but in HTML, ID's starting with a number is illegal. – BalusC Nov 25 '10 at 19:45
its just for example purposes – Blitzkr1eg Nov 26 '10 at 6:04

1 Answer

up vote 1 down vote accepted

I got it to work by reRendering the form's parent. It's strange. Why wouldn't it rerender only the form or a element in a form?

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.