<jt:hyperlink address="${cbBaseUrl}${item.urlLink}" value="${item.id}"></jt:hyperlink>
|
|
The hyperlink tag does not support implicit iteration, it wont work with the items variable. Hence, you can not use the following tag.
|
<jt:hyperlink address="${cbBaseUrl}${items.urlLink}" value="${items.id}"></jt:hyperlink>
|
ID
|
Name
|
|
|---|---|---|
|
<jt:forEach items="${items}" var="it"><jt:hyperlink address="${cbBaseUrl}${it.urlLink}" value="${it.id}"/>
|
${it.name}
|
|