on 12/5/2000 10:45 AM, "Diethelm Guallar, Gonzalo"
<[EMAIL PROTECTED]> wrote:
> #foreach ($info in $infos)
> <tr>
> <td>$info.getCode()</td>
> <td>$info.getFullName()</td>
> #end
>
> #foreach ($info in $infos)
> <tr>
> <td>$info.getFieldByName("code")</td>
> <td>$info.getFieldByName("fullName")</td>
> #end
Why not just this:
#foreach ($info in $infos)
<tr>
<td>$info.Code</td>
<td>$info.FullName</td>
#end
That works today.
Also, before you go down the route you are going (which I can see clearly),
I *highly* suggest that you read my Pull vs. Push document.
<http://java.apache.org/turbine/pullmodel.html>
-jon
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?: [EMAIL PROTECTED]