Sure, here's the jsp snippet containing the section I'm talking about:
**********************************
<t:saveState value="#{user_comp}"/>
<h:dataTable id="userRolesTable"
value="#{user_comp.userRoles}"
var="role"
first="#{user_comp.userRoles.pageHandler.firstRowIndex}"
rows="#{user_comp.userRoles.pageHandler.displayCount}"
styleClass="dataTable"
columnClasses="center, left, left"
rowClasses="odd, even">
<h:column>
<h:outputText value="#{role.roleId}" styleClass="label"/>
</h:column>
</h:dataTable>
<h:panelGrid columns="2" columnClasses="right, left">
<f:verbatim>Add a Role:</f:verbatim>
<h:selectOneMenu id="selectNewRole"
value="#{user_comp.userRoles.new.roleId}"
styleClass="selectSimple1">
<f:selectItem itemLabel="- Select -" itemValue=""/>
<f:selectItems value="#{roleSelectList.selectItems}"/>
</h:selectOneMenu>
</h:panelGrid>
<h:commandButton styleClass="buttonSimple" value="Add Role to User"
action="#{user_comp.userRoles.addNew}"/>
**********************************
We are not using PPR. We are using MyFaces 1.1.4. and JDK 1.5_04.
Thanks,
Bill
Richard Yee-3 wrote:
>
> Can you send your jspx page? Are you using PPR at all?
>
> -Richard
>
>
--
View this message in context:
http://www.nabble.com/Component-rendering-order-issue--tp16609078p16616240.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.