In the custom tag I have the scriptlet is not evaluated, though I rtexprvalue set as 
true. 

<mytaglib:mytag myvar="<%= foo %>"/>

the value of foo is not passed in the custom tag. But the string as such "<%= foo %>" 
gets passed.

Am I missing anything else?

-----Original Message-----
From: Patrice [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 9:41 AM
To: Struts Users Mailing List
Subject: Re: what does RT Expr mean


It means "Run time expressions": the content is evaluated at the run time
(so, you can have a dynamic value for the tag's attribute value).
For example:
<% string foo = "foo"; %>
<bean:define id="myAttribute" value="<%= foo %>"/>

Hope it helps
Patrice

----- Original Message -----
From: "Sundar Narasimhan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, January 29, 2003 3:26 PM
Subject: what does RT Expr mean


> In the bottom of the documentation on the attributes of several tags I
> see [RT Expr].. what does that mean? Is it documented anywhere?
>
> Thanks.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


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


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

Reply via email to