Hi conference

Can I use "continue" in struts tag <s:iterator> ?
----------------------------------------------------------
from:

 for (Category cat : category){   
                
                if (cat.getId() == 1)
                                continue;
                
                System.out.println(cat.getName());                      
        }
-----------------------------------------------------------------------------
to:

<s:iterator value="category" status="rowstatus"  >      
                <s:if test="id == 1">    ?????????????    </s:if>               
                                                        
                <li><s:property value="name"/></li>                  
</s:iterator>
-------------------------------------------------
Thaks for help
Tomas Jurman 
Czech Republic
-- 
View this message in context: 
http://www.nabble.com/use-continue-in-%3Cs%3Aiterator%3E-tp16219950p16219950.html
Sent from the Struts - User mailing list archive at Nabble.com.


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

Reply via email to