[jQuery] Re: Jquery Calling Servlet

2009-01-17 Thread Mike Alsup
> > ... i need to use AJAX because  the servlet called is appended with input > > parameters that contains 1 to 5 charectars and when i directly call > > the servlet  instead of making ajax call the url is not completely formed > > and the servlet is not invoked. > > You can change your fo

[jQuery] Re: Jquery Calling Servlet

2009-01-17 Thread jQuery Lover
You can change your form method attribute to post and you would not have the too long url problem. Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Mon, Jan 12, 2009 at 9:52 AM, RUQUIA TABASSUM wrote: > ... i need to use AJAX because the servlet called is appended wi

[jQuery] Re: Jquery Calling Servlet

2009-01-11 Thread RUQUIA TABASSUM
Here i need to use AJAX because the servlet called is appended with input parameters that contains 1 to 5 charectars and when i directly call the servlet instead of making ajax call the url is not completely formed and the servlet is not invoked. direct call:- window.opener.location.hre

[jQuery] Re: Jquery Calling Servlet

2009-01-11 Thread Mike Alsup
> How do i direct my servlet to a new window using JQuery i am not able > to understand as i am new to JQuery, can you please suggest me how do i do > this i tried doing > window.opener.location.href=" > $.post("../reports/BillIDPropIDExcelExport",{csvstring: > $("#vname1").val(),count:$("#vn

[jQuery] Re: Jquery Calling Servlet

2009-01-11 Thread RUQUIA TABASSUM
How do i direct my servlet to a new window using JQuery i am not able to understand as i am new to JQuery, can you please suggest me how do i do this i tried doing window.opener.location.href=" $.post("../reports/BillIDPropIDExcelExport",{csvstring: $("#vname1").val(),count:$("#vname2").val()

[jQuery] Re: Jquery Calling Servlet

2009-01-10 Thread jQuery Lover
Create a new window and direct it to your servlet url then onload.close(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Jan 8, 2009 at 7:08 PM, ruquia wrote: > > Hi i am calling a servlet using JQuery and my servlets create an excel > file at runtime and provides th