RE: question about jstl tag c:if

2005-04-26 Thread Abdullah Jibaly
I'm not familiar with DynaValidatorForm but what does this give you: c:if test=${loginForm['singlesignon'] == '0'} /c:if -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 10:15 AM To: user@struts.apache.org Subject: question about jstl tag

RE: question about jstl tag c:if

2005-04-26 Thread Karr, David
From a JavaBeans point of view, the dyna attributes are not attributes of the DynaValidatorForm, they are entries in a map that is an attribute of the DynaValidatorForm. So, the following should work: c:if test=${loginForm.map.singlesignon == '0'} /c:if -Original Message- From:

RE: question about jstl tag c:if

2005-04-26 Thread Ashish Kulkarni
Thanx It works, Ashish --- Karr, David [EMAIL PROTECTED] wrote: From a JavaBeans point of view, the dyna attributes are not attributes of the DynaValidatorForm, they are entries in a map that is an attribute of the DynaValidatorForm. So, the following should work: c:if