AJAX

2005-11-18 Thread Tom Allison
I'm wondering if this is possible. But can perl interact with an AJAX designed site as a client (LWP-ish)? (It's probably a really stupid question, but I just started reading on this stuff and thought I would ask about my fav programming language). -- To unsubscribe, e-mail: [EMAIL

Perl and AJAX

2007-08-27 Thread Mathew Snyder
Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I want to do is call a Perl script from my AJAX application. Having created all the necessary communication lines I then pass the script URL with the GET method to the "line" in order to execute said Perl s

Anyone using AJAX

2005-04-14 Thread Ramprasad A Padmanabhan
Hi, I am trying to learn using Ajax instead of form-oriented perl-cgi. ( fascinated with gmail :-) ) I have already started with CPAN modules Catalyst::Plugin::Ajax and HTML::Ajax. Do we have any good documenation / tool that can help me thanks Ram

Re: Perl and AJAX

2007-08-27 Thread Paul Lalli
On Aug 27, 8:43 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: > Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I > want to do is call a Perl script from my AJAX application. Having created all > the necessary communication lines I then pass the script UR

Re: Perl and AJAX

2007-08-27 Thread Mathew Snyder
Paul Lalli wrote: > On Aug 27, 8:43 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: >> Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I >> want to do is call a Perl script from my AJAX application. Having created >> all >> the necessary

Re: Perl and AJAX

2007-08-27 Thread Mathew Snyder
Paul Lalli wrote: > On Aug 27, 8:43 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: >> Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I >> want to do is call a Perl script from my AJAX application. Having created >> all >> the necessary

More Perl and AJAX

2007-08-29 Thread Mathew Snyder
When passing a value from JavaScript to a Perl script, am I right in thinking that the value received by the Perl script would be captured like my $value = @_;? I'm trying to pass a value to Perl and by calling it directly in the browser and passing a value to it like so http://ajax.application.c

RE : Anyone using AJAX

2005-04-15 Thread Jose Nyimi
> -Message d'origine- > De : Ramprasad A Padmanabhan [mailto:[EMAIL PROTECTED] > Envoyé : vendredi 15 avril 2005 08:32 > À : perl beginners > Objet : Anyone using AJAX > > > Hi, > I am trying to learn using Ajax instead of form-oriented > perl-c

best AJAX tool/module ?

2011-09-28 Thread Rajeev Prasad
Hello,   what would be the best AJAX module to use with perl?   is cgi::ajax best? I am not using CGI in my project so far so checking if there is anything else out there...   are there any other modules which would be easy (natural fit) to work with data returned in JASON?   please give your

AJAX, Graphs and Perl backend

2007-06-30 Thread Mathew Snyder
Does anyone know what the best route to creating graphs using AJAX and Perl would be? I've been running various searches on this and haven't found any solid information on how to make this happen. Thanks Mathew -- Keep up with me and what I'm up to: http://theillien.blogs

AW: More Perl and AJAX

2007-08-29 Thread Angerstein
Ihhhkk @values = @_; Or you got the number of elements. -Ursprüngliche Nachricht- Von: Mathew Snyder [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 29. August 2007 13:32 An: Perl Beginners Betreff: More Perl and AJAX When passing a value from JavaScript to a Perl script, am I right

RE: More Perl and AJAX

2007-08-29 Thread Andrew Curry
# do something # } elsif (param('today')) { # # do something # } -Original Message- From: Mathew Snyder [mailto:[EMAIL PROTECTED] Sent: 29 August 2007 12:32 To: Perl Beginners Subject: More Perl and A

Re: best AJAX tool/module ?

2011-09-28 Thread Jeff Pang
I have been using CGI::Ajax and JSON, both work fine for me. 29 сентября 2011, 00:50 от Rajeev Prasad : > Hello, >   > what would be the best AJAX module to use with perl? >   > is cgi::ajax best? I am not using CGI in my project so far so checking if > there is anyth

Re: best AJAX tool/module ?

2011-09-28 Thread Rajeev Prasad
how about dojo EXT motools  ...etc. ? can these be integrated with perl CGI? From: Jeff Pang To: Rajeev Prasad Cc: "beginners@perl.org" Sent: Wednesday, September 28, 2011 8:35 PM Subject: Re: best AJAX tool/module ? I have been using CGI::Aja

Re: best AJAX tool/module ?

2011-09-28 Thread Octavian Rasnita
From: "Rajeev Prasad" Hello, what would be the best AJAX module to use with perl? is cgi::ajax best? I am not using CGI in my project so far so checking if there is anything else out there... are there any other modules which would be easy (natural fit) to work with data returne

Re: best AJAX tool/module ?

2011-09-28 Thread Shlomi Fish
rasad wrote: > Hello, >   > what would be the best AJAX module to use with perl? >   > is cgi::ajax best? I am not using CGI in my project so far so checking if > there is anything else out there... >   It's CGI::Ajax, and it should be OK for some stuff. In any case, I s

Re: best AJAX tool/module ?

2011-09-28 Thread Shlomi Fish
Hi Rajeev, On Wed, 28 Sep 2011 20:14:29 -0700 (PDT) Rajeev Prasad wrote: > how about dojo EXT motools  ...etc. ? > > can these be integrated with perl CGI? Yes, they can (including jQuery). What are you trying to do exactly? Regards, Shlomi Fish --

Re: best AJAX tool/module ?

2011-09-29 Thread Rajeev Prasad
display on. reading on web , i figured CGI::Ajax does it by somehow tying a JavaScript function (automatically generating JavaScript code and injecting in the perl output) to a perl subroutine. So 1)it duplicates the code of the subroutine. 2) its JavaScript code can not be cached on client and

Re: best AJAX tool/module ?

2011-09-29 Thread Brandon McCaig
value(s) to webpage to be > displayed in the div i want to display on. AJAX is most often used as a buzzword. The actual definition is Asynchronous JavaScript And XML. The key is the XMLHttpRequest object in JavaScript (a non-standard browser extension), which allows code to make a Web request in

Re: AJAX, Graphs and Perl backend

2007-07-01 Thread cldmismgr
On Jul 1, 1:05 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: > Does anyone know what the best route to creating graphs using AJAX and Perl > would be? I've been running various searches on this and haven't found any > solid information on how to make this happen. > > Thank

Re: AJAX, Graphs and Perl backend

2007-07-01 Thread Mathew
cldmismgr wrote: > On Jul 1, 1:05 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: >> Does anyone know what the best route to creating graphs using AJAX and Perl >> would be? I've been running various searches on this and haven't found any >> solid information on how to

Re: AJAX, Graphs and Perl backend

2007-07-02 Thread Jay Savage
On 7/1/07, Mathew <[EMAIL PROTECTED]> wrote: cldmismgr wrote: > On Jul 1, 1:05 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: >> Does anyone know what the best route to creating graphs using AJAX and Perl >> would be? I've been running various searches on this and

Re: AW: More Perl and AJAX

2007-08-29 Thread Mathew Snyder
umber of elements. > > -Ursprüngliche Nachricht- > Von: Mathew Snyder [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 29. August 2007 13:32 > An: Perl Beginners > Betreff: More Perl and AJAX > > > When passing a value from JavaScript to a Perl script, am I right in > thinking t

Project request : ajax chat with perl backend

2008-11-12 Thread Brent Clark
Hiya Ive been tasked with building a ajax chat but it has to be with a perl backend. Anyone know of any existing projects to help with rapid dev. I looked at the various PHP projects out there, but Management wants Perl. TIA Regards Brent Clark -- To unsubscribe, e-mail: [EMAIL PROTECTED

assign javascript variables to a perl variables using ajax

2008-04-04 Thread Pau Marc Munoz Torres
Hi , I got a cgi in perl, in this cgi i use ajax to ejecute a javascript code, in this code i produce a prompt, and i store the value at the res variable. now i would like to store this variabe, res into a perl variable ($res), something like $res=res How can i do that? thanks #!/usr/bin

Does any one have nice programs for PERL AJAX

2006-06-21 Thread Anish Kumar K.
Hi I searched out in the Google and all for some nice Ajax Programs with the perl template toolkit and all.Can any one mail me the programs. Thanks Anish -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/>

RE: Does any one have nice programs for PERL AJAX

2006-06-21 Thread Nagasamudram, Prasanna Kumar
Hi Anish I happened to browse through the following page http://www.perl.com/pub/a/2006/03/02/ajax_and_perl.html which actually explains what is Ajax and how to use the perl warapper CGI::Ajax with a simple example. Thanks Prasanna -Original Message- From: Anish Kumar K. [mailto

not able to send a cookie to my ajax call:

2016-06-12 Thread Rajeev Prasad via beginners
hello perl Gurus, I have put the same question on stack exchange, but getting no response... I am NOT able to send the cookie in response to AJAX call to my webpage. I am following it exactly as the manual says, putting the cookie in the header of "$q", but it is not working :(the

Re: not able to send a cookie to my ajax call:

2016-06-13 Thread Shlomi Fish
stack exchange, but getting no response... > I am NOT able to send the cookie in response to AJAX call to my webpage. > I am following it exactly as the manual says, putting the cookie in the > header of "$q", but it is not working :(the javascript code does not find any > cook

Re: not able to send a cookie to my ajax call:

2016-06-14 Thread Rajeev Prasad via beginners
thank you.I was able to resolve. It was the header data type issue. The AJAX call was expecting JSON output, and the script was sending text/html. I have now resolved this issue. I will update the question on website soon. thank you. Rajeev On Monday, June 13, 2016 4:51 AM, Shlomi Fish

CGI-Ajax-0.701 - How Do I Capture Table Of Data Via Right-Mouse-Click, Then, 'Export to Excel'

2008-05-28 Thread ken . stephani
I build a table, but, when I try to export to MicroSoft Excel I see Excel start, but then I get a "Web query returned no data" popup. Thank you very much, in advance, for any help!! Regards!! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http: