Re: s:property in s:* not interpreted

2008-03-19 Thread GF
Is this the standard JSP syntax? On Mon, Mar 17, 2008 at 3:08 PM, Dave Newton [EMAIL PROTECTED] wrote: --- GF [EMAIL PROTECTED] wrote: ...unless you use the XML syntax available from JSP 2.0 and later ;-) And in this case, how can you resolve the div id=s:property... ? div

Re: s:property in s:* not interpreted

2008-03-19 Thread Randy Burgess
To: Struts Users Mailing List user@struts.apache.org Subject: Re: s:property in s:* not interpreted Is this the standard JSP syntax? On Mon, Mar 17, 2008 at 3:08 PM, Dave Newton [EMAIL PROTECTED] wrote: --- GF [EMAIL PROTECTED] wrote: ...unless you use the XML syntax available from JSP 2.0

Re: s:property in s:* not interpreted

2008-03-19 Thread Dave Newton
--- GF [EMAIL PROTECTED] wrote: Is this the standard JSP syntax? JSP 2.0 EL. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: s:property in s:* not interpreted

2008-03-19 Thread GF
I noticed that since some version of Struts2 it is now forbidden inside s: tag attributes.. right? On Wed, Mar 19, 2008 at 2:54 PM, Dave Newton [EMAIL PROTECTED] wrote: --- GF [EMAIL PROTECTED] wrote: Is this the standard JSP syntax? JSP 2.0 EL. Dave

Re: s:property in s:* not interpreted

2008-03-19 Thread Dave Newton
--- GF [EMAIL PROTECTED] wrote: I noticed that since some version of Struts2 it is now forbidden inside s: tag attributes.. right? Yep. Inside S2 tags use OGNL. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: s:property in s:* not interpreted

2008-03-19 Thread Randy Burgess
List user@struts.apache.org Subject: Re: s:property in s:* not interpreted I noticed that since some version of Struts2 it is now forbidden inside s: tag attributes.. right? On Wed, Mar 19, 2008 at 2:54 PM, Dave Newton [EMAIL PROTECTED] wrote: --- GF [EMAIL PROTECTED] wrote

Re: s:property in s:* not interpreted

2008-03-17 Thread GF
...unless you use the XML syntax available from JSP 2.0 and later ;-) And in this case, how can you resolve the div id=s:property... ?

Re: s:property in s:* not interpreted

2008-03-17 Thread Dave Newton
--- GF [EMAIL PROTECTED] wrote: ...unless you use the XML syntax available from JSP 2.0 and later ;-) And in this case, how can you resolve the div id=s:property... ? div id=${aProperty}... Dave - To unsubscribe, e-mail:

s:property in s:* not interpreted

2008-03-13 Thread matthieu martin
Hi all ! I have a little issue and I find no clues on the web, so i'm turning myself to you. I have a piece of code like this : div id=menu_image_galleryss:property value='id'/ s:property id=s:property value='id'/ value=id/ s:a theme=ajax href=%{EditImageGallery}

Re: s:property in s:* not interpreted

2008-03-13 Thread Richard Sayre
try: s:a theme=ajax href=%{copyImageGallery} targets=dataImageDiv%{id}/Copy/s:a if id is on the stack, you can get it with OGNL On Thu, Mar 13, 2008 at 10:49 AM, matthieu martin [EMAIL PROTECTED] wrote: Hi all ! I have a little issue and I find no clues on the web, so i'm turning myself

Re: s:property in s:* not interpreted

2008-03-13 Thread Dave Newton
--- matthieu martin [EMAIL PROTECTED] wrote: s:property id=s:property value='id'/ value=id/ That's not valid XML; you can't nest tags like that. Off the top of my head I don't recall if the id attribute will eval OGNL or not. Dave

Re: s:property in s:* not interpreted

2008-03-13 Thread matthieu martin
On Thu, Mar 13, 2008 at 3:26 PM, Richard Sayre [EMAIL PROTECTED] wrote: try: s:a theme=ajax href=%{copyImageGallery} targets=dataImageDiv%{id}/Copy/s:a if id is on the stack, you can get it with OGNL This works, thanks a lot. I haven't working for a long time with struts 2 and I still

Re: s:property in s:* not interpreted

2008-03-13 Thread Laurie Harper
Dave Newton wrote: --- matthieu martin [EMAIL PROTECTED] wrote: s:property id=s:property value='id'/ value=id/ That's not valid XML; you can't nest tags like that. Off the top of my head I don't recall if the id attribute will eval OGNL or not. To be pedantic, JSPs are not XML

Re: s:property in s:* not interpreted

2008-03-13 Thread Manos Batsis
Laurie Harper wrote: Dave Newton wrote: --- matthieu martin [EMAIL PROTECTED] wrote: s:property id=s:property value='id'/ value=id/ That's not valid XML; you can't nest tags like that. Off the top of my head I don't recall if the id attribute will eval OGNL or not. To be