Hi all,
for some weird reason the following piece of code doesn't work
<logic:iterate id="level2" name="navigation" property="navVO.secondLevel">
<bean:write name="level2" property="title"/>
</logic:iterate>
When i run this, the
JSP throws an error saying
"The bean level2 cannot be found in any scope"
all the value objects are defined, and are available, b'coz when i print the collection secondLevel in the JSP all the 20 objects are displayed.
there are 20 objects in that collection.
when i replace the bean:write tag with any normal text then the loop gets executed only once.
any ideas?
Seshu