To partially answer my own question, I changed this:

> <table>
> <tr><th>Center</th><th>Title</th><th>Total</th></tr>
> <logic:iterate id="centerItem" name="browseCenters" 
> type="com.berzerkersoft.bisweb.db.ejb.value.CenterBrowseValue">
>       <tr>
>               <td><bean:write name="centerItem" property="center"/></td>
>       </tr>
> </logic:iterate>
> </table>

to read:

<table>
<tr><th>Center</th><th>Title</th><th>Total</th></tr>
<logic:iterate id="centerItem" name="browseCenters" 
type="com.berzerkersoft.bisweb.db.ejb.value.CenterBrowseValue">
        <tr>
                <td>Element Value: <bean:write name="centerItem" 
property="center"/></td>
        </tr>
</logic:iterate>
</table>

and I get the exact number of "Element Value: " outputs, but no output
from the bean tag.... So something must be wrong with the bean tag or
the way I have my id declared...

-- 
Bryce Fischer <[EMAIL PROTECTED]>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to