Logic Iterate problem:
Can we have nested logic iterates?
e.g. if I want to show list of products under all Categories. how can i implement that?
I am having problem in setting the values of attributes for inner logic iterate loop
<logic:iterate id="category" name="categorylist">
<bean:write name="category" property="categoryname"/>
<logic:iterate id="products" ???? >
<bean:write name="products" ???? />
</logic:iterate>
</logic:iterate>
I have a bean "catergory" class which has "productlist[]" and "catergoryname" as its
properties
Thanks in advance
Raman Garg