I have a class
public class mybean{
boolean isGood;
public boolean getIsGood(){
return isGood;
}
public void setIsGood(boolean good){
this.isGood = good;
}
}
Suppose I have a list of mybean, can I do this:
<logic:iterate id="obj" name="mylist">
<logic:equal name="obj" property="isGood"
value="true">
xxxgood
</logic:equal>
</logic:iterate>
My app throws a exception saying:
No bean found under attribute key obj
I do not know why
____________________________________________________
Yahoo! Sports
Rekindle the Rivalries. Sign up for Fantasy Football
http://football.fantasysports.yahoo.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]