On 11/18/06 12:02 PM, "Ian Roughley" <[EMAIL PROTECTED]> wrote:
> tag should list the stack.
Yea, I'm working with the DebuggingInterceptor at the moment. The issue with
that is it tries to start traversing my whole data model. :( So, I've hacked
on it a little and added a max depth to the seria
tag should list the stack. Remember that the local vars
(from loops & tags) as well as the model will be on the stack first - so
if the variable has the same name you will need to better specify its
location.
/Ian
Mark Menard wrote:
Is there a means of examining the value stack. I have a
On 11/17/06, Mark Menard <[EMAIL PROTECTED]> wrote:
Is there a means of examining the value stack. I have a very strange
situation where OGNL in my JSP is returning a value from
com.opensymphony.xwork2.ActionContext.parameters on the stack, even though I
have a property with the name on my actio
Hi Mark,
By doing
valueStack.getContext();
we get the valueStack's context (a Map) whose value with "someKey" as its key
is accessible through
<@s.property value="%{#someKey}" />
There's a root in the value stack as well,
valueStack.getRoot();
which is like a stack, I think that's where t
Is there a means of examining the value stack. I have a very strange
situation where OGNL in my JSP is returning a value from
com.opensymphony.xwork2.ActionContext.parameters on the stack, even though I
have a property with the name on my action class. It's almost like OGNL is
skipping over the pro