well i just tried the select and checkboxlist tags and they dont work,
calls to $stack.findValue() arent resolving.

Peter White wrote:

My action class has an ArrayList of POJOs for dropdown population. If I use the following ww:select tag, the dropdown label populates correctly but the value is empty. However, the following JSTL code works perfectly. Are ww:select fields working fine for everyone else or is it just me? For the record, I'm using WW2Beta2. Thanks!

<tr><ww:select label="'Asset Category'" name="'model.category.id'" list="categories" listKey="['id']" listValue="['label']"/></tr>


<tr>
<td align="right">Asset Category:</td>
<td>
<select name="model.category.id">
<c:forEach var="cat" items="${categories}"
<option value='<c:out value="${cat.id}"/>'><c:out value="${cat.label}"/>
</c:forEach>
</select>
</td>
</tr>







------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Opensymphony-webwork mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to