Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-10 Thread David Morel
Le 6 mars 09 à 17:33, Francesc Romà i Frigolé a écrit : On Fri, Mar 6, 2009 at 6:43 AM, kakim...@tpg.com.auwrote: hello there, I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? thanks. K. akimoto Hello, Depends on what do you want to do with

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-10 Thread kakimoto
hello, David, Sounds good. For me, I have done away with html::Formfu, formbuilder and so forth because my needs better met with manual old school html. Can you give us some links as a reference to the rest of us? thanks K. Akimoto Quoting David Morel dmore...@gmail.com: Le 6 mars

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-10 Thread David Morel
Le 10 mars 09 à 10:11, kakim...@tpg.com.au a écrit : hello, David, Sounds good. For me, I have done away with html::Formfu, formbuilder and so forth because my needs better met with manual old school html. Can you give us some links as a reference to the rest of us? Mmmh maybe you

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-10 Thread kakimoto
hello, David :) yep I do know that things like FormFu and FormBuilder are good but for Perl people who maintain existing applications that have not ever touched these form packages and Catalyst, it seems like a whole new world . Add the requirement to get a prototype up pretty soon, and the

RE: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-10 Thread Mesdaq, Ali
Subject: [Catalyst] Catalyst - any good AJAX tutes? hello there, I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? thanks. K. akimoto ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Neo [GC]
Hi, depends on the javascript-lib you are using for AJAX. Catalyst just builds a template, which is interpreted clientside by the AJAX-lib. This might be XML, JSON, plain HTML or $something. For the webserver / Catalyst, the requests look like any other normal HTTP-request. Greets, Thomas

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread David Dorward
kakim...@tpg.com.au wrote: I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? Ajax just comes down to making HTTP requests without leaving the page using JavaScript. There isn't really anything Catalyst specific about it (except possibly a mention that

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Chisel Wright
On Fri, Mar 06, 2009 at 04:43:36PM +1100, kakim...@tpg.com.au wrote: I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? It's just like using ajax anywhere else. Find a library you like, and start using it. View::JSON can be useful in sending responses to

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Kieren Diment
On 06/03/2009, at 8:56 PM, Chisel Wright wrote: On Fri, Mar 06, 2009 at 04:43:36PM +1100, kakim...@tpg.com.au wrote: I would like to use AJAX in my catalyst app. Any good references/ tutes to recommend? It's just like using ajax anywhere else. Find a library you like, and start using it.

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Neo [GC]
Kieren Diment schrieb: On 06/03/2009, at 8:56 PM, Chisel Wright wrote: On Fri, Mar 06, 2009 at 04:43:36PM +1100, kakim...@tpg.com.au wrote: I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? It's just like using ajax anywhere else. Find a library you

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Peter Corlett
On 6 Mar 2009, at 10:33, Neo [GC] wrote: [...] To anyone: Be careful when converting perl-datastructures to JSON. I remember having a problem with boolean values, as javascript knows real booleans while perl uses 0 and 1. use JSON did have some magic settings to prevent a boolean 0/false to

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Stuart Watt
I've had some very good results with Dojo and Catalyst for AJAX. A couple of components in our app show this exceptionally - a table of contents based on a folding tree, and a grid backed by an SQL query, using to display filtered search results in different sort orders, etc. The grid will

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Francesc Romà i Frigolé
On Fri, Mar 6, 2009 at 6:43 AM, kakim...@tpg.com.au wrote: hello there, I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? thanks. K. akimoto Hello, Depends on what do you want to do with AJAX. For example, if you want to do forms, I think it is a

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Alexander Hartmaier
I'd suggest ExtJS if you want something pretty good looking with great out-of-the-box features or YUI/jQuery if you like to stick with JS-enhanced HTML. The Dojo features + docs sucked *very* much when I used it about a year ago... On the Catalyst side I use Catalyst::Controller::DBIC::API which

RE: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Scott Pham (scpham)
, March 06, 2009 12:14 PM To: The elegant MVC web framework Subject: Re: [Catalyst] Catalyst - any good AJAX tutes? I'd suggest ExtJS if you want something pretty good looking with great out-of-the-box features or YUI/jQuery if you like to stick with JS-enhanced HTML. The Dojo features + docs sucked

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Jonathan Rockway
* On Fri, Mar 06 2009, Francesc Romà i Frigolé wrote: On Fri, Mar 6, 2009 at 6:43 AM, kakim...@tpg.com.au wrote: hello there,  I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? thanks. K. akimoto Hello, Depends on what do you

Re: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread kakimoto
hello, all :) thanks for the responses to help me out. I was wondering if there are any good tutes that can be recommended for a perl programmer to 1) learn enough to set up the javascript itself ( be it in jQuery, dojo or anything you prefer) 2) learn enough about how to intercept the ajax

[Catalyst] Catalyst - any good AJAX tutes?

2009-03-05 Thread kakimoto
hello there, I would like to use AJAX in my catalyst app. Any good references/tutes to recommend? thanks. K. akimoto ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: