dataList does not call setter for var variable.
-----------------------------------------------
Key: MYFACES-1009
URL: http://issues.apache.org/jira/browse/MYFACES-1009
Project: MyFaces
Type: Bug
Components: Tomahawk
Versions: 1.1.1
Reporter: Daniel Ray
The following never calls setArtistLname. It will render the correct number of
input fields for the declared value.
<t:dataList value="#{TASK.track.artistList}" var="artist">
<t:inputText value="#{artist.artistLname}" />
<t:inputText value="#{artist.artistFname}" />
</t:dataList>
Changing to dataTable works just fine.
<t:dataTable value="#{TASK.track.artistList}" var="artist">
<t:column>
<t:inputText value="#{artist.artistLname}" />
</t:column>
<t:column>
<t:inputText value="#{artist.artistFname}" />
</t:column>
</t:dataTable>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira