Re: use property of iterator

2008-10-05 Thread Hardik Shah
can i use vector of vector for iterating - Java/J2EE developer India blogs http://hardik4u.wordpress.com wordpress blog -- View this message in context: http://www.nabble.com/use-property-of-iterator-tp19810685p19831975.html Sent from the Struts - User mailing list archive at Nabbl

Re: How to capture this event

2008-10-05 Thread Mark
While I haven't used it yet, my understanding is that if you set preload=false, the DIV won't load until the user clicks the tab. Then the content will load. However, I've also found this issue: https://issues.apache.org/struts/browse/WW-1860 which you might be running into. Mark On 06

RE: ParameterAware Issue

2008-10-05 Thread alley sys
Struts 2.0.11 > Date: Sun, 5 Oct 2008 22:59:13 +0200> From: [EMAIL PROTECTED]> To: > user@struts.apache.org> Subject: Re: ParameterAware Issue> > 2008/10/5 alley > sys <[EMAIL PROTECTED]>:> >> > hi,> > thanks for your quick reply. i checked > the code> > it shows nothing.> >> > code:> > Objec

Re: How to capture this event

2008-10-05 Thread Tracy12
Thanks for the reply, I have not set any preload value, But what I want is capture that event (when someone click the div) and do a AJAX call to the server, with Preload how can we do this.? Do i have to use notifyTopics, Waiting for a reply, Thanks Mark-413 wrote: > > What have you s

RE: How to capture this event

2008-10-05 Thread Martin Gainty
for your From: [EMAIL PROTECTED] > Subject: Re: How to capture this event > Date: Mon, 6 Oct 2008 12:33:28 +1100 > To: user@struts.apache.org > > What have you set for the "preload" value of the DIV tag? I believe > if you set this to false, it will behave the way you want. > > Check out: ht

Re: How to capture this event

2008-10-05 Thread Mark
What have you set for the "preload" value of the DIV tag? I believe if you set this to false, it will behave the way you want. Check out: http://struts.apache.org/2.1.2/docs/dojo-div.html Mark On 06/10/2008, at 12:22 PM, tom tom wrote: Hi, We are using struts 2.0.6 with AJAX development f

How to capture this event

2008-10-05 Thread tom tom
Hi, We are using struts 2.0.6 with AJAX development features, we got couple of

Re: ParameterAware Issue

2008-10-05 Thread Lukasz Lenart
2008/10/5 alley sys <[EMAIL PROTECTED]>: > > hi, > thanks for your quick reply. i checked the code > it shows nothing. > > code: > Object o = getParameters().get("partyid"); if (o instanceof String) > { System.out.println("String = " + o); } else if (o > instanceof St

Re: struts2 , freemarker email template

2008-10-05 Thread Leonidas Papadakis
That's great . Thanks for your help. Leon Dave Newton wrote: --- On Sat, 10/4/08, Leonidas Papadakis wrote: I use Spring in my project. Is there an example that i can have a look at ? http://static.springframework.org/spring/docs/2.5.x/reference/mail.html Dave ---

RE: ParameterAware Issue

2008-10-05 Thread alley sys
hi, thanks for your quick reply. i checked the code it shows nothing. code: Object o = getParameters().get("partyid"); if (o instanceof String) { System.out.println("String = " + o); } else if (o instanceof String[]) { String[] a = (String[]) o;