Re: useAttribute and simple Types

2003-03-18 Thread Cedric Dumoulin
Alban Soupper wrote: Thanks, So what it the common use for passing boolean value to tiles: via a String attribute ? Alban. -Original Message- From: Cedric Dumoulin [mailto:[EMAIL PROTECTED] Sent: mardi, 18. mars 2003 11:24 To: Struts Users Mailing List Subject: Re: useAttribute and simple

RE: useAttribute and simple Types

2003-03-18 Thread Alban Soupper
Thanks, So what it the common use for passing boolean value to tiles: via a String attribute ? Alban. -Original Message- From: Cedric Dumoulin [mailto:[EMAIL PROTECTED] Sent: mardi, 18. mars 2003 11:24 To: Struts Users Mailing List Subject: Re: useAttribute and simple Types Hi

Re: useAttribute and simple Types

2003-03-18 Thread Cedric Dumoulin
Hi, The useAttribute tag doesn't perform any type conversion. When you specify a classname, the tag will do something like: Classtype varName = (Classtype)request.getAttribute( "attributeName" ); So, there is no way to specify primitive types. Cedric Alban Soupper wrote: Hi all, Just a