Description
DataList appears to be broken in 1.1.2-nightlies. My form elements are not being validated or updated. If I downgrade to 1.1.1 everything works fine. Here is the test case:
----------test.jsp------------
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
<f:view>
<h:form>
<t:dataList value="#
" var="value">
<h:message for="item"/>
<h:inputText id="item" required="true" value="#
"/><br/>
</t:dataList>
<br/>
<h:commandButton/>
</h:form>
</f:view>
-------------Test.java-----------(A SESSION managed bean named "test")
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Test {
List values;
public List getValues() {
if(values == null) {
values = new ArrayList();
}
return values;
}
}
Attachments
Issue Links
- is blocked by
-
TOMAHAWK-157 dataList does not call setter for var variable.
- Reopened