Re: How to implement ajax in struts 1.1

2008-03-17 Thread Sudhan Maharjan
Also you can use different frameworks like DWR, GWT . etc, Please visit: http://wiki.apache.org/struts/AjaxStruts On Thu, Mar 13, 2008 at 5:07 PM, Raghu varma bhupathiraju < [EMAIL PROTECTED]> wrote: > > Hi friends > > Can any one tell me how to implement ajax in struts 1.1 with simple > exa

Re: How to implement ajax in struts 1.1

2008-03-17 Thread Sudhan Maharjan
If you know how to use AJAX in general websites, its not much of difficulty to implement AJAX in struts. Just include action while sending request to server. like req.open("GET", someaction.do, true); where req is HttpXmlRequest Object. Rest you can get the data as manipulate as usual. On Thu, M

Re: struts 1.2 html:select and submit button

2008-03-17 Thread Sudhan Maharjan
You can simply call a struts action through AJAX. A little bit of AJAX can help to do your task. If you know AJAX, you can call struts action while sending request as req.open("GET", someaction.do, true); On Tue, Mar 18, 2008 at 9:20 AM, Sonu S <[EMAIL PROTECTED]> wrote: > HI, > > I am using st