[Rails-spinoffs] scriptaculous 1.5.1 and problems with safari 2.0.2

2006-01-02 Thread Spiceee
Just upgraded to 1.5.1 and an old bug showed its ugly head in safari: I'm downloading some content via ajax updater and on success feeding a div with the content and using Effect.Appear on it. Works in mozilla flavored browsers and IE 6 but on safari just after the effect stops the div goes mental

Re: [Rails-spinoffs] Scriptaculous and Prototype based Rich Text Editor

2006-01-02 Thread Andrew Kaspick
Nice start. I also find the other editors to be too bulky. I also have a pretty full plate, but if I have some time to add something to it I will and forward it on. On 12/22/05, Pelle Braendgaard <[EMAIL PROTECTED]> wrote: > Hi Guys, > I'm currently using the Dojo Rich text editor on my site > h

RE: [Rails-spinoffs] Autocompleter with a scroll bar

2006-01-02 Thread Daniel Elmore
Err, As soon as I touch the scroll bar with the mouse, the whole div fades away. Were you able to get around this Greg??? Daniel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gregory Hill Sent: Monday, January 02, 2006 4:21 PM To: rails-spinoffs@lists.

RE: [Rails-spinoffs] Autocompleter with a scroll bar

2006-01-02 Thread Daniel Elmore
Ooo, got it. Just use "overflow: auto;" Daniel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gregory Hill Sent: Monday, January 02, 2006 4:21 PM To: rails-spinoffs@lists.rubyonrails.org Subject: RE: [Rails-spinoffs] Autocompleter with a scroll bar I di

RE: [Rails-spinoffs] Autocompleter with a scroll bar

2006-01-02 Thread Daniel Elmore
Thanks Greg, that almost works for me. It's giving me some display issues. A horizontal scroll bar is displayed even though it's not needed. Is there a way to flag a scroll-y only? Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gregory Hill Sent

RE: [Rails-spinoffs] Autocompleter with a scroll bar

2006-01-02 Thread Gregory Hill
I did with an Autocompleter.Local, just put it in the css on the div to scroll. style="overflow: scroll;" Greg > -Original Message- > From: [EMAIL PROTECTED] [mailto:rails-spinoffs- > [EMAIL PROTECTED] On Behalf Of Daniel Elmore > Sent: Monday, January 02, 2006 3:14 PM > To: rails-spino

[Rails-spinoffs] Autocompleter with a scroll bar

2006-01-02 Thread Daniel Elmore
Has anyone been able to make scrollable results for an autocompleter? Thanks! ___ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

[Rails-spinoffs] (no subject)

2006-01-02 Thread tyco
___ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

RE: [Rails-spinoffs] First time class problems

2006-01-02 Thread Gregory Hill
Oh, and if I’m looking at the right code, this.onFocus just calls this.elm.onfocus, so it shouldn’t work at all it seems.  Am I missing something?   Greg   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gregory Hill Sent: Monday, January 02, 2006 12:44 PM To:

RE: [Rails-spinoffs] First time class problems

2006-01-02 Thread Gregory Hill
You might want to try: Event.observe(this.elm, ‘focus’, this.onFocus.bindAsEventListener(this));   That’s just at a cursory glance.  If it still doesn’t work, I could look into it more.   Greg   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Ladum Se

[Rails-spinoffs] First time class problems

2006-01-02 Thread Michael Ladum
Hi,   I’ve just had my very first attempt of making a _javascript_ class, ”prototype” style, so please bare with me, for any disastrous errors J   Anyway, I’ve made this class, which is called on an input field on focus: http://pastebin.com/487417   It works fine in FireFox, but cau

Re: [Rails-spinoffs] mouse position without event

2006-01-02 Thread Tarek Ziadé
great, thanksOn 1/2/06, Michael Zachariassen Krog <[EMAIL PROTECTED]> wrote: Hi Tarek.No its not. But theres an easy workaround. The following code may not executeas its not tested in a browser, just written from the back of my head. :-) Here it goes:--