Displaying 7 results from an estimated 7 matches for "atetlaw".
Did you mean:
tetlaw
2006 Apr 26
3
DOM events not firing in IE6 with floated divs
Hi All
Not strictly Scriptaculous but I came across this whilst trying to implement
some Scriptaculous code. I am hoping some XHTML guru out there might be able
to shed some light.
If you load up the attached file in IE6, you''ll see the events only fire in
the middle section of the title bar when your over the border ! - FF1.5 is
fine..
Any thoughts / comments appreciated..
Cheers
2006 Apr 27
8
Prototype based tabs and field validation. Enjoy!
Thought I''d try and contribute to the growing prototype ecosystem.
tabs:
http://tetlaw.id.au/view/blog/fabtabulous-simple-tabs-using-prototype/
field validation:
http://tetlaw.id.au/view/blog/really-easy-field-validation-with-prototype/
Both real easy and clean to use. Hope y''all can use them somehow.
Cheers
--
Andrew
2006 Jun 21
26
Implementing a boolean "switch" in a Class
I need a single boolean which would be "globally" accessible to all
instances of a class. Seems like the boolean should be in the class
prototype, but I was troubled by the difficulty of setting the prototype
boolean to true. Maybe I''m missing something?
var MyObject = Class.create();
MyObject.prototype = {
bSwitch: false,
... other methods and properties
}
var oMyOb1
2006 Apr 26
0
RE: DOM events not firing in IE6 with floated di vs
...d of div.row in your
> example and the event correctly bubbles up to div.row and
> highlights it. If you float div.formw suddenly it stops
> bubbling as if it''s now considered to be on top of anf not a
> child of div.row..... weird.
>
> On 26/04/06, Andrew Tetlaw <atetlaw-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> > I believe that in IE events don''t propagate down they only
> bubble up.
> > In FF they do both!
> >
> > Thus the hover is for the top element and it doesn''t propagate down
> > the the div un...
2006 May 18
1
RE: Rails-spinoffs Digest, Vol 12, Issue 29
...king this.getToken(), NOT by directly accessing this.element.value. This
is to allow incremental tokenized autocompletion.
Does anyone understand the getToken function??
Thanks!
------------------------------
Message: 5
Date: Thu, 18 May 2006 08:46:49 +1000
From: "Andrew Tetlaw" <atetlaw-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: Re: [Rails-spinoffs] Autocomplete GetToken??
To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
Message-ID:
<ba21c310605171546k39ebc60aoad0d95fffd47b2a-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
Content-Type: text/plain; ch...
2006 May 19
0
The challenge is on!
http://www.dustindiaz.com/yui-tetris/
Don't bother trying to make Tetris, go one up and do Asteroids or
Space Invaders or something :)
--
Andrew
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2006 Apr 10
0
Proposal for Try.allThese()
Dunno if this is the forum for it but I''ve had a need for a slight
modification to Try.these() from prototype.js. In my situation I
wanted to make sure that as many functions ran as possible instead of
just the first successful.
It''s useful in situations where you have a lot of if(object) { /* do
stuff with object */ } statements in a row.
The return value wasn''t