| Quote: |
| tag 'radio', field 'list', name 'masterKey': The requested list key '#{${current.id}:''}' could not be resolved as a collection/array/map/enumeration/iterator type. Example: people or people.{name} - [unknown location]
|
| Code: |
| <c:forEach items="${wizmstBean.wizdtlList}" var="current" varStatus="i">
<tr class="${rowclass}"> <td nowrap="nowrap" class="tabletd" align="center"> ${current.id} <s:radio theme="simple" name="detailKey" list="#{1:''}"/> </td> <td nowrap="nowrap" class="tabletd"> ${ current.adminProjClassTbl.name } </td> <td nowrap="nowrap" class="tabletd"> ${current.adminProjTypeTbl.name} </td> <td nowrap="nowrap" class="tabletd"> ${current.adminIndustryTypeTbl.name} </td> </tr> </c:forEach> |
| Code: |
| list="#{1:''}" |
| Code: |
| list="#{current.id:''}"
list="#{#current.id:''}" list="#{${current.id}:''}" list="#{current.{id}:''}" |