Displaying 20 results from an estimated 3000 matches similar to: "Queuing Ajax Requests"
2006 Mar 02
6
Question about $F()
Hi Guys,
Maybe this is a stupid question, but I am confused at the moment.
The $F() function is a handy shortcut to get the value of the an input field.
So, doing something like $F(''name'') is equivalent to document.formname.name.value which is pretty cool.
Now, what if I have 2 forms on the page, that same field name "name"?
What would $F return? It does not take
2006 Mar 09
6
[Prototype] Ajax.Request include form fields?
Hi,
Is it possible to submit my form (or part of my form) with an ajax
request? I had been using dojo to do this, but having just read up on
the prototype library, I think I''d rather use prototype. The one
thing I don''t see (maybe I''m just missing it) is the ability to submit
my form (actually just parse through an element and include all inputs
as request parameters)
2006 Jun 29
3
dynamic generation of iframes and writing to them
Hello Everyone,
I would like to get some suggestions on a problem I am trying to address.
- I send a request to a 3rd party server (for ads) and a response is received from them.
- Currently, I display it inline on the page and things work fine but page loading is slow and the 3rd party response can mess up styles, js on my page.
- So, I want to capture this response and dynamically generate
2006 May 25
7
prototype-ish subclassing
when using prototype and Class.create(), what''s the preferred method of
creating a subclass?
say I have a real simple class:
var Testing = Class.create();
Object.extend(Testing.prototype, {
initialize: function() {
...
},
...
});
would I subclass it as so?
var SubClass = Class.create();
Object.extend(Object.extend(SubCLass.prototype, Testing.prototype), {
...
2006 Jan 11
9
Prototype & Cookies
Has anyone written any "cookie" class using prototype?
Basically, what I am looking for is if there is an easy way to store mutiple cookies in a single cookie using hash or something - easy writing and retrieval (updating the cookie value).
For eg -
If I had 25 cookies for my domain 5 of the cookies would either get dropped or not be set (as there is a limit of 20 cookies per domain).
2006 May 19
11
Prototype / Scriptaculous & Dojo
Are these libs compatible
? At the very least I''d like to be able to use Prototype & Dojo ?
Thoughts welcome..
Matt
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2006 Apr 24
1
JSON Validator
Maybe I am missing something very obvious, but guys does anyone know of any JSON Validators around?
The reason is when you do an eval(json_response), if the JSON format is not proper, you''ll only get an error like "Can''t eval..".
But, this doesn''t help identify where the actual problem lies.
Is there some kind of a schema or something we can write to check
2006 May 23
10
throttling...
Is there a way to throttle the firing of updater requests easily with
Prototype?
Thanks,
mark
2006 Feb 18
10
Updated: window dialog script
Dialog script has been update. A demo can be seen here:
http://net4visions.com/dev/dialog/dialog.htm .
Please see changelog for changes.
The dialog script can be downloaded from here:
http://www.net4visions.com/dev/downloads/dialog.zip .
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Apr 24
5
merging one array into another
Is there no better way to merge one array into another than iterating over the
array you wish to append with each() and push()ing the elements on to the
other array?
Here''s what I mean:
var arr1 = [1, 2, 3, 4, 5];
var arr2 = [''a'', ''b'', ''c''];
$A(arr2).each(function(el) { arr1.push(el) });
Is there no better way to do it than this?
2006 Jun 14
5
generic onDragStart onDrag and onDragFinish events extracted from scriptaculous?
Hi folks.
I''m working on a project where I need some drag and drop, but I need to
implement what happens in a very different way, so I''m creating my own class
for it. I don''t want to reinvent the wheel and redo Thomas'' excellent
drag/drop functionality, nor do I want to copy/paste his code over into mine.
So, I was wondering, has anyone tried to extract
2006 Apr 28
4
.times not behaving as I''d expect
I''m using prototype 1.4.0 in a big web application I''ve been working
on for months and today a bug was raised by one of our testers. After
investigation it turns out that something done 0 times will actually
fire once. So, for example, if I had
(0).times( function(i) { alert(i); } );
it''d fire once rather than not at all. Is this a bug in prototype or
the
2006 Apr 07
4
Effect.toggle error in 1.6.1
I have this line of code:
new Effect.toggle(document.getElementsByClassName(''modarea'',
Event.findElement(ev,''li'')), ''blind'');
I''ve confirmed that the Effect.toggle is indeed getting the proper element,
however, I''m getting this in my javascript console:
element.visible is not a function (effects.js: line 153)
I
2006 May 01
2
[prototype] Selector class fails on selector strings with spaces
I just ran across this bug when trying to re-create Ben Nolan''s behaviour.js
with prototype and was wondering if anyone had fixed it before I went
re-inventing the wheel :)
Thanks!
-Jeremy
--
Jeremy Kitchen ++ kitchen-RA8HwDor7flnDGu+y90WmgC/G2K4zDHf@public.gmane.org
http://ipaction.org/ -- defend your rights to fair use
_______________________________________________
2006 Feb 21
7
accordion (outlook bar thingy) help
Does anybody have a solution that really works nice? I know about:
http://wiki.script.aculo.us/scriptaculous/show/accordion%20feature but I was
hoping someone had worked out the kinks. I''m really looking for something
like: http://openrico.org/rico/demos.page?demo=rico_accordion
Thanks for your time.
Joe
_______________________________________________
Rails-spinoffs mailing list
2006 Feb 10
13
Element.observe () binding
Hey all,
I working on a project, but I am not sure I can do what I want to
do. The following works beautifully:
Event.observe(el, ''click'', function () { this.className += "
myClass"; return false; });
I have also tried doing this:
this.varname = ''test'';
Event.observe(el, ''click'', function () { alert (this.varname); }.bind
2006 Feb 21
2
Ajax status
Hello All. I''m making ajax call to some url but to connect and
get data from that url first I check session for user which using
AJAX. If session is expired I redirect Ajax call to other url.
That url return form to login. There is one problem - I check in
function onResponse(OriginalRequest) OriginalRequest status and
status is always 200 - whatever I''m logged or not. So i
2006 May 18
5
more that 5 time beats for effect.pulsate
hi again
How can i extend 5 times for effect.pulsate beats?
I need that continue beat until other event client happened
about my other mail, is there other solution more elegant that this? :
new Effect.Pulsate(leccion[i_leccion],{duration: 5,from: 1});
thanks again
rag
2006 Mar 15
3
prototype.js Event.stopObserving
anyone have any information on how to effectively use this?
Event.observe() doesn''t return anything, and nothing I''ve tried is actually
removing the event listeners from the objects.
-Jeremy
--
Jeremy Kitchen ++ kitchen-RA8HwDor7flnDGu+y90WmgC/G2K4zDHf@public.gmane.org
In the beginning was The Word and The Word was Content-type: text/plain
-- The Word of Bob.
2006 Feb 02
3
dynamic addition of table rows
Hi, I have a table laid out something like this:
<table>
<thead>
<tr>
<th>col 1</th>
<th>col 2</th>
</tr>
</thead>
<tbody id="tablebody">
<tr>
<td>moo</td>
<td>moo</td>
</tr>
<tr>
<td>moo</td>
<td>moo</td>
</tr>