Re: [Tacos-devel] incorrect ajax reponse using blocks

2006-02-01 Thread Cosmin Bucur
I get this too , I belive Leonardo also confirmed it at one point . I happends in certain situations , hard to pinpoint the cause , and it seems to be a bit random . I think it's a debug error from dojo that gets printed evevn when the printing is off . On 2/1/06, Jesse Kuhnert <[EMAIL PROTECTED]

Re: [Tacos-devel] ProgressBar in a Dialog

2006-02-01 Thread Jesse Kuhnert
Does it work if you don't use the tacos defaultLinkAction call? My first gut instinct says that might be the problem. You could also try enabling the debug console (documentation on main tacos site, or example in the demo) to see what's going on, possbily post some of your response data into an ema

Re: [Tacos-devel] trigger an ajax listener from javascript?

2006-02-01 Thread Jesse Kuhnert
It's a little bit off the beaten path, but if you know your forms unique client id (ie doing a view source it would be form id="uniqueclientid" ) then you know the method that will be called to submit it via an AjaxForm which is(replace ${formId} with your unique client id): document.post${formId}F

Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?

2006-02-01 Thread Jesse Kuhnert
Yeah sorry, maybe the documentation should be more clear here..._javascript_ basically allows you to randomly add a method to pretty much any object that you like. So...Take any object (ie var myObject = new Object()) and give it a method: myObject.someMethod = function(parms ) {}That's it. On 2/1/

Re: [Tacos-devel] Question about AjaxEventSubmit

2006-02-01 Thread Jesse Kuhnert
That's a tough one...It doesn't sound like something I'd have anymore enlightenment on unless I saw it for myself...Is this specifically only with radio fields or? On 2/1/06, Ryan Eberly <[EMAIL PROTECTED]> wrote: Hi There,       I've been experimenting with the tapestry demo.  The Ajax Submit sec

Re: [Tacos-devel] incorrect ajax reponse using blocks

2006-02-01 Thread Jesse Kuhnert
Hi Edgar, It's impossible for me to know what's wrong without seeing some source. Could you paste in all the relevant sections you guys are running into problems with? (Like the link and the blocks it's trying to operate on) jesseOn 2/1/06, Edgar Chan Carrillo <[EMAIL PROTECTED]> wrote: Hi. Im fac

[Tacos-devel] ProgressBar in a Dialog

2006-02-01 Thread Jeremy
Hi everyone. I’m trying to put a ProgressBar in a Dialog. I modified the startObject of the standard ProgressBar demo so it looks like this:       startObject.responseComplete = function(responseElements) {     if (!document.progAnim) {     var progNode = documen

[Tacos-devel] trigger an ajax listener from javascript?

2006-02-01 Thread J. Joseph Benavidez
Hello, I have search text field where I want to apply the principals described here: http://ajaxpatterns.org/Submission_Throttling Basically, on a set interval, I want to do an ajax form submit if the text in the text field has changed. Wiring up everything so that the text value is cached an

[Tacos-devel] Pinpointing Js errors with dojo and tacos

2006-02-01 Thread Cosmin Bucur
Curently my app uses : dojo js , tacos js , prototype js , rico js , and some of my ... js ... >From time to time I get the odd error : exception found in page : myApp/app line 4960 character 1 . Well this isn't too helpfull . Line 4960 of app , when my Home.html has 50 lines . Sometimes that li

Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?

2006-02-01 Thread Cosmin Bucur
Ghetto I just never needed the ProgresBar so I would have never thoguht to look there . Thanks for the tip . Cosmin On 2/1/06, Michael Waluk <[EMAIL PROTECTED]> wrote: > The ProgressBar demo page uses a "startObject" and a "cancelObject" which > demonstrate the 4 methods that you can provide in

Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?

2006-02-01 Thread Michael Waluk
The ProgressBar demo page uses a "startObject" and a "cancelObject" which demonstrate the 4 methods that you can provide in your object in order to do things before and after a particular ajax call.   I forget where I read about the UpdateObject, but it definitely works (i am using alpha-7).   Tha

Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?

2006-02-01 Thread Cosmin Bucur
You might be right . However after looking through the AjaxDirectLink.jwc and reading the update Object comments , then looking through tacos.js it's still not clear to me how this works exactly . It looks to me like the tacos.js is trying to run some methods on this update Object . Then it must i

Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?

2006-02-01 Thread Michael Waluk
Hi Cosmin, Isn't that what the updateObject is for?  Your updateObject's beforeAjaxUpdate and ajaxUpdate methods will be called to handle this before and after the Ajax call.  I might have misunderstood the question, but thought I would try. Thanks, Michael  On 2/1/06, Cosmin Bucur <[EMAIL PROTECT

[Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?

2006-02-01 Thread Cosmin Bucur
yes / no is it to obvious that i just don't see it ? I'm having a dificult time understanding how and what arguments are beeing passed to the tacos method on click of the AjaxDirectLink ? On 1/28/06, Cosmin Bucur <[EMAIL PROTECTED]> wrote: > I have an AjaxDirectLink which i'd also like to use as

[Tacos-devel] Question about AjaxEventSubmit

2006-02-01 Thread Ryan Eberly
Hi There,       I've been experimenting with the tapestry demo.  The Ajax Submit section has an event that triggers when the radio group receives focus.  It includes a note saying that it works with onchange events as well.  However, when I attempt to make it activate on onchange events, it works e