JSTL and DynaBeans

2003-11-25 Thread Pedro Salgado
I have been using the struts taglibs and have been trying to use only JSTL. When using DynaBeans the JSTL doesn't work (${bean.propertyA} doesn't print anything) I solved the problem of accessing DynaBeans extending the BasicDynaBean and implementing the Map interface but I am also using

R: JSTL and DynaBeans

2003-11-25 Thread Grassi Fabio
Would the alternative syntax ${bean[propertyA]} work better? Regards, Fabio. -Messaggio originale- Da: Pedro Salgado [mailto:[EMAIL PROTECTED] Inviato: martedì 25 novembre 2003 16:05 A: Struts Users Mailing List Oggetto: JSTL and DynaBeans I have been using the struts

Re: R: JSTL and DynaBeans

2003-11-25 Thread Pedro Salgado
. -Messaggio originale- Da: Pedro Salgado [mailto:[EMAIL PROTECTED] Inviato: martedì 25 novembre 2003 16:05 A: Struts Users Mailing List Oggetto: JSTL and DynaBeans I have been using the struts taglibs and have been trying to use only JSTL. When using DynaBeans

Re: R: JSTL and DynaBeans

2003-11-25 Thread Kris Schneider
. -Messaggio originale- Da: Pedro Salgado [mailto:[EMAIL PROTECTED] Inviato: martedì 25 novembre 2003 16:05 A: Struts Users Mailing List Oggetto: JSTL and DynaBeans I have been using the struts taglibs and have been trying to use only JSTL. When using DynaBeans

RE: JSTL and DynaBeans

2003-11-25 Thread Paananen, Tero
When using DynaBeans the JSTL doesn't work (${bean.propertyA} doesn't print anything) ${bean.map.propertyA} and salvation is yours. -TPP - This email may contain confidential and privileged material for the sole use

RE: JSTL and DynaBeans

2003-11-25 Thread Kris Schneider
Only if bean is a DynaActionForm. Which is not the case for the DynaBeans created by RowSetDynaClass (it uses BasicDynaBean internally). Quoting Paananen, Tero [EMAIL PROTECTED]: When using DynaBeans the JSTL doesn't work (${bean.propertyA} doesn't print anything) ${bean.map.propertyA