[Proto-Scripty] Re: IE9 Drag-Drop

2010-11-02 Thread Ben
I can confirm that Prototype '1.7_rc3' fixes this problem. Nice work. :) Ben On Sep 27, 4:58 pm, Steffen Christgau wrote: > Hi folks, > > I was able to reinstall an older version ofIE9PP (1.9.7916.6000) but > it also raises the drag'n'drop problem. I start started debugging and > found the fol

[Proto-Scripty] ajax.updater and onLoad

2010-11-02 Thread Martín Marqués
I'm tryng to find a way for ajax.updater to show an animated gif clock during the load of the request, but can't find it, and I don't want to rewrite all the scripts with ajax.request. I thought I saw it in the past, but can't recall where. Any ideas? -- Martín Marqués select 'martin.marques' ||

Re: [Proto-Scripty] Re: transfert parameter (this) in Ajax.Request

2010-11-02 Thread laurent barre
Hi, It's the fisrt time that I work with javascript and that I use P.O.O. javascript. I saw some lessons on javascript, I start to understand. You are right, my problem isn't "this". I retried, the problem is in the function "Ajax.Request". example code : url : function(object) {

Re: [Proto-Scripty] ajax.updater and onLoad

2010-11-02 Thread Walter Lee Davis
If you just want it for one updater, then do this: new Ajax.Updater('foo','bar.php', { onCreate: function(){ $('indicator').show(); }, onComplete: function(){ $('indicator').hide(); } }); Another trick I like is this one: new Ajax.