Displaying 1 result from an estimated 1 matches for "displaycolumn".
Did you mean:
displaycolumns
2005 Aug 10
0
Reordering lists dissociates nested input elements from form.
...o be associated with the form. Am I doing
something wrong or do the input elements need to be reassociated with
the form?
Thanks in advance,
Richard.
:: Code Snippet ::
<form ...>
<ul id="selected" >
<c:forEach var="item" items="${search.filter.layout.displayColumns}">
<li class="layoutItem" style="cursor:move;">
${item.displayName}
<input type="hidden" name="displayColumn"
value="${item.displayName}"/>
</li>
</c:forEach>
</ul>...