Displaying 6 results from an estimated 6 matches for "crane2".
Did you mean:
crane
2007 Feb 15
3
Re: Incremental Updates
...me other mechanism to incrementally tell
> > the client what is going on.
> >
> > Cheers
> >
> > Neil
-------------------------------------------------------
--
----------------------
Author
Ajax in Action http://manning.com/crane
Ajax in Practice http://manning.com/crane2
Prototype & Scriptaculous Quickly http://manning.com/crane3
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group.
To post to this group, send email to rubyonrails-spinoffs-/JYPx...
2007 Mar 08
2
Form.Element.select
Hi there,
is there any way to select part of an input element, not the whole of it,
keeping the cursor at the start of the selection?
As far as i can remember, about a year ago i saw a working page using this
feature, but i cannot find it now...
I hope someone can help me to find an answer to my question.
Anthyon
--~--~---------~--~----~------------~-------~--~----~
You received this message
2007 Mar 10
2
Managing PeriodicalExecuters in an Ajax app. How?
Hi all
I have to deal with multiple PeriodicalExecuters over several
Interfaces. Each has it own. Now this all works, but i when i go back
and forth between them i spawn another and another etc...
I tried to push the instance of PE to a global array and on each
change in the interface invoke a stop() on them. This sounds okay, but
it is obviously not working 100% of the time.
Any ideas how to
2007 May 17
5
AJAX, PHP and scriptalicious
Hey,
I''m brand new to AJAX and scriptalicious, so i''m hoping for some help.
inside hello.php
I have this piece of code to grab and loop out users in the database:
function test(){
$query = mysql_query(''SELECT * FROM `testing`'');
while($i = mysql_fetch_row($query))
{
echo''<div class="testie">'';
2007 Mar 01
3
Ajax.PeriodicalUpdater using Effect.Highlight to highlight newly loaded div
Hi folks. So far I have managed to get dataloading into a div froma
php script. This script just passes the time on the server in a div to
the javascript below. I am trying to get the last loaded data to call
Effect.Highlight but it seems to highlight the 2nd last data instead.
Can anyone see what''s going wrong here? I''ve tried everywhere to solve
this.
Check the code in action
2007 Jan 19
7
Prototype.js: Is there an "in_array"-like function?
Hi
i was wondering if there is a quick way to search for a item within an
array. Here is my approach for this functionality. It''s an prototype
for an Array method called "has":
Array.prototype.has = function(needle) {
for (var i=0;i<this.length;i++) {
if(this[i] == needle){ return true; }
}
return false;
}
var someArray = [''jim'',