Re: Tiles and ControllerClass

2003-09-26 Thread Jim Theodoridis
Thank you for your help. Is thera any problem if i use a single Action like this? definition name=.poll path=/tiles/layouts/tileLayout.jsp put name=title value=Poll / put name=tileBody value=/pollTileAction.do / /definition and not the TilesAction?

Tiles and ControllerClass

2003-09-25 Thread Jim Theodoridis
Hi. In tiles-def.xml i have the following definition definition name=.poll path=/tiles/layouts/tileLayout.jsp controllerClass=gr.tera.portal.actions.poll.GetPollAction put name=title value=Poll / put name=tileBody value=/pages/poll/poll.jsp / /definition But when i run

RE: Tiles and ControllerClass

2003-09-25 Thread Alex Shneyderman
Yep, you gotta extend the right class. Try to extend org.apache.struts.tiles.ActionController instead -Original Message- From: Jim Theodoridis [mailto:[EMAIL PROTECTED] Sent: Thursday, September 25, 2003 2:27 PM To: Struts Users Mailing List Subject: Tiles and ControllerClass

Re: Tiles and ControllerClass

2003-09-25 Thread Barry Volpe
AM Subject: Tiles and ControllerClass Hi. In tiles-def.xml i have the following definition definition name=.poll path=/tiles/layouts/tileLayout.jsp controllerClass=gr.tera.portal.actions.poll.GetPollAction put name=title value=Poll / put name=tileBody value=/pages/poll/poll.jsp

Re: Tiles and ControllerClass

2003-09-25 Thread Barry Volpe
, September 25, 2003 11:27 AM Subject: Tiles and ControllerClass Hi. In tiles-def.xml i have the following definition definition name=.poll path=/tiles/layouts/tileLayout.jsp controllerClass=gr.tera.portal.actions.poll.GetPollAction put name=title value=Poll / put name

Re: Tiles and ControllerClass

2003-09-25 Thread khote
PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, September 25, 2003 11:28 AM Subject: RE: Tiles and ControllerClass Yep, you gotta extend the right class. Try to extend org.apache.struts.tiles.ActionController instead -Original Message- From: Jim

Derived tiles inherit controllerClass?

2002-02-07 Thread Jim Crossley
In the tiles definition file, when one definition extends another, the parent's controllerClass does not seem to be inherited by the child. Is that by design or a bug? Thanks. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Derived tiles inherit controllerClass?

2002-02-07 Thread Cedric Dumoulin
It's a bug. Jim Crossley wrote: In the tiles definition file, when one definition extends another, the parent's controllerClass does not seem to be inherited by the child. Is that by design or a bug? Thanks. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: Derived tiles inherit controllerClass?

2002-02-07 Thread Jim Crossley
I see. I had a look at the source and another question occurred to me. When a child overrides the controllerClass of the parent, would we expect only the child's to execute, or would all inherited controllers chain together? Cedric Dumoulin [EMAIL PROTECTED] writes: It's a bug. Jim