RE: ajax:autocomplete tag

2006-06-19 Thread Bharat Kumar Meda
---Original Message- From: Samere, Adam J [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 6:17 PM To: Struts Users Mailing List Subject: RE: ajax:autocomplete tag You can forward to a JSP from your action rather than coding tags into your action, then generate XML in your JSP rather than HTM

Re: ajax:autocomplete tag

2006-06-14 Thread Sony Thomas
Subject: RE: ajax:autocomplete tag Hi That was what I ment - You don't return any values from your action. You need to write the values to the response (supplied by the action), and then return null. The documentation at http://ajaxtags.sourceforge.net shows you how, or search for Strut

RE: ajax:autocomplete tag

2006-06-14 Thread Samere, Adam J
: -Adam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 8:01 AM To: user@struts.apache.org Subject: RE: ajax:autocomplete tag Hi That was what I ment - You don't return any values from your action. You need to write the values t

RE: ajax:autocomplete tag

2006-06-14 Thread hermod.opstvedt
tance. Hermod -Original Message- From: Sony Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 1:55 PM To: Struts Users Mailing List Subject: Re: ajax:autocomplete tag Hi Hermod, I am setting the value entered in the textbox parameters="username={username}" username

Re: ajax:autocomplete tag

2006-06-14 Thread Sony Thomas
i You are not setting any values in the request - How can the list be populated if you don't supply any values Hermod -Original Message- From: Sony Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 1:09 PM To: user@struts.apache.org Subject: ajax:autocomplete tag

RE: ajax:autocomplete tag

2006-06-14 Thread hermod.opstvedt
Hi You are not setting any values in the request - How can the list be populated if you don't supply any values Hermod -Original Message- From: Sony Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 1:09 PM To: user@struts.apache.org Subject: ajax:autocomplete tag

RE: ajax:autocomplete tag

2006-06-14 Thread Chandra.Ravinithala
- From: Sony Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 4:39 PM To: user@struts.apache.org Subject: ajax:autocomplete tag Hi, I am a newbie in ajax. I want to use ajax in my application. Let me explain my requirement : when I enter a character in the text field i have to call

ajax:autocomplete tag

2006-06-14 Thread Sony Thomas
Hi, I am a newbie in ajax. I want to use ajax in my application. Let me explain my requirement : when I enter a character in the text field i have to call an action. Inside my action i have to load all the users and send it back to jsp so that I can display. I am able to call the action c