Re: override Struts BaseFieldTag.renderInputElement

2011-06-28 Thread prithivirajan
it is compile time error. the method 'renderInputElement()' is undefined. On Tue, Jun 28, 2011 at 8:00 PM, Wes Wannemacher [via Struts] < ml-node+4531963-1262229847-155...@n5.nabble.com> wrote: > Are you receiving a compiler error or runtime error? Please provide > the output/errors/etc. that lea

Namespace sitemesh decorators? Namespace from freemarker result?

2011-06-28 Thread struts . rgm
I have two namespaces, "admin" and " (the default namespace). I'd like to re-use the same result template for both, but decorate them differently. My templates declare their decorator using the meta tag, like this: Then, in decorators.xml, I have defined: I'd like to generalize this to h

Re: override Struts BaseFieldTag.renderInputElement

2011-06-28 Thread Wes Wannemacher
Are you receiving a compiler error or runtime error? Please provide the output/errors/etc. that lead you to believe you don't have access. -Wes On Tue, Jun 28, 2011 at 5:34 AM, prithivirajan wrote: > I was thinking for writing customize Struts TextTag by extending it. And > override the protecte

Re: Spring Plugin and Interceptor instantiation

2011-06-28 Thread Wes Wannemacher
Spring will instantiate the interceptors (and actions and results) if spring is able to resolve the name given as a bean. Think of it like this, if you specify an interceptor like so - and "executeAndWaitInterceptorBean" resolves as a bean name in your spring context, then it will use the resolved

override Struts BaseFieldTag.renderInputElement

2011-06-28 Thread prithivirajan
thinking for writing customize Struts TextTag by extending it. And override the protected renderInputElement() available in BaseFieldTag. Unfortunately this method is not accessible/visible in my class which extends BaseFieldTag. I understand there is some kind for restriction for protected acces

Spring Plugin and Interceptor instantiation

2011-06-28 Thread roger
Hi If I use the struts 2 spring plugin, will the struts framework use spring to instantiate the standard filters (i.e. ExecuteAndWaitInterceptor) or does the struts framework continue to instantiate them? Regards -- View this message in context: http://struts.1045723.n5.nabble.com/Spring-Plugin

override Struts BaseFieldTag.renderInputElement

2011-06-28 Thread prithivirajan
I was thinking for writing customize Struts TextTag by extending it. And override the protected renderInputElement() available in BaseFieldTag. Unfortunately this method is not accessible/visible in my class which extends BaseFieldTag. I understand there is some kind for restriction for protecte