RE: Getting acknowledgment for an AJAX request

2008-09-25 Thread ravindra
// to the Paginator. } }; -Original Message- From: ManiKanta G [mailto:[EMAIL PROTECTED] Sent: Thursday, September 25, 2008 10:17 AM To: Struts Users Mailing List Subject: Re: Getting acknowledgment for an AJAX request As I said, the JSON plugin would be a good

Re: Getting acknowledgment for an AJAX request

2008-09-25 Thread ManiKanta G
Thanks. Will try this. ManiKanta

Re: Getting acknowledgment for an AJAX request

2008-09-24 Thread ManiKanta G
Thanks Laurie, If all you need to return is a number or true/false, simply write that to the response in your action method and return null what do you mean writing to response? You mean using response.xxx methods? or some thing else? The bottom line is that, once you understand what it is

Re: Getting acknowledgment for an AJAX request

2008-09-24 Thread Laurie Harper
ManiKanta G wrote: Thanks Laurie, If all you need to return is a number or true/false, simply write that to the response in your action method and return null what do you mean writing to response? You mean using response.xxx methods? or some thing else? More or less, yes: write your

Re: Getting acknowledgment for an AJAX request

2008-09-24 Thread ManiKanta G
As I said, the JSON plugin would be a good starting point. http://cwiki.apache.org/S2PLUGINS/json-plugin.html Thanks. I've experimented with the JSON and I m able to return a JSON string, but was not able to process that in the jsp. How I m going to process the JSON in jsp? Do I need to

RE: Getting acknowledgment for an AJAX request

2008-09-23 Thread Deepak Kumar
hi, Please check http://www.roseindia.net/ajax Thanks -Original Message- From: ManiKanta G [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2008 3:41 PM To: Struts-User Subject: Getting acknowledgment for an AJAX request Hi, I m practicing AJAX in S2. And in response to my

Re: Getting acknowledgment for an AJAX request

2008-09-23 Thread ManiKanta G
Please check http://www.roseindia.net/ajax well I didn't find any thing. More over site speaks about regular AJAX there. Can some tell me how to do that in S2. I mean JSON or some other. Regards, ManiKanta

RE: Getting acknowledgment for an AJAX request

2008-09-23 Thread ravindra
Hi This has lot of info about sending ajax requests http://developer.yahoo.com/yui/ -Original Message- From: ManiKanta G [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2008 4:03 PM To: Struts Users Mailing List Subject: Re: Getting acknowledgment for an AJAX request Please

Re: Getting acknowledgment for an AJAX request

2008-09-23 Thread Laurie Harper
ManiKanta G wrote: Hi, I m practicing AJAX in S2. And in response to my previous mail, Dave replied That's what Ajax does (loosely speaking): returns HTML fragments (or data as JSON, XML, etc.). That's the point of it--so you don't have to return entire pages and refresh the entire window.