[richfaces-issues] [JBoss JIRA] Created: (RF-9396) EL evaluation inside a4j:repeat nested in ui:repeat - Property not found

Lukas Fryc (JIRA) jira-events at lists.jboss.org
Fri Oct 1 05:18:40 EDT 2010


EL evaluation inside a4j:repeat nested in ui:repeat - Property not found
------------------------------------------------------------------------

                 Key: RF-9396
                 URL: https://jira.jboss.org/browse/RF-9396
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: component-a4j-core
    Affects Versions: 4.0.0.Milestone3
         Environment: RichFaces 4.0.0-SNAPSHOT r.19396
Metamer ${project.version} r.${buildNumber}
Mojarra 2.0.2-FCS
Apache Tomcat 6.0.29
OpenJDK Runtime Environment 1.6.0_18-b18 @ Linux
Chrome 6.0.472.62 @ Linux
            Reporter: Lukas Fryc


The sample input in a4j:repeat works ok inside another a4j:repeat or h:dataTable or rich:dataTable, but doesn't work in ui:repeat.

Minified sample used from Metamer:

(Note that #{a4jRepatBean.dataList} is evaluated to List<Data> where Data contains property text (exists void Data$setText(String) and String Data$getText).

(Also sample simply works when a4j:repeat is used instead of ui:repeat).

<ol>
		<ui:repeat value="#{templateBean.dataTableModel}" var="item"
			id="containerUiRepeat1">
			<li><h:panelGroup columns="1" rendered="#{item == 'row 1'}">
				<ul id="list">
					<a4j:repeat id="a4jRepeat" value="#{a4jRepeatBean.dataList}"
						var="item">
						<li><h:inputText value="#{item.text}" /></li>
					</a4j:repeat>
				</ul>
			</h:panelGroup> <h:outputText value="#{item}" rendered="#{item != 'row 1'}" /></li>
		</ui:repeat>
	</ol>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the richfaces-issues mailing list