Re: [Rails-spinoffs] Scrollbar in Autocomplete List

2006-02-13 Thread Ed C.
You should be able to add "overflow:scroll;" style to your autocomplete list container (div) On 2/14/06, Ignacio Sandejas <[EMAIL PROTECTED]> wrote: > Hi all, > > Firstly is there a way to search the archives? > > Second I was wondering if there is a way to implement a scrollbar on the > list that

Re: [Rails-spinoffs] Netvibes.com / Scriptaculous

2006-02-13 Thread Ed C.
Ah, before I was using Sortable w/ floated divs -- I hadn't tried multiple list containers + dropOnEmpty. Thanks! On 2/13/06, Jerod Venema <[EMAIL PROTECTED]> wrote: > Ed, > > I'd go with the sortables, and create maybe 3 different lists (or sets of > divs, whatever). You can use the sortable opt

[Rails-spinoffs] Scrollbar in Autocomplete List

2006-02-13 Thread Ignacio Sandejas
Hi all, Firstly is there a way to search the archives? Second I was wondering if there is a way to implement a scrollbar on the list that occurs when you use autocomplete. I have some lists that are very long so I would like to shorten them but still have all the options. Regards, --

Re: [Rails-spinoffs] Netvibes.com / Scriptaculous

2006-02-13 Thread Warren Noronha
On 13-Feb-06, at 3:56 PM, Ed C. wrote: Is it possible to create a "dashboard" type application, like Netvibes.com, w/ script.aculo.us? Yes. Its possibly, and is pretty easy to implement. Have a look at the sortable lists. http://wiki.script.aculo.us/scriptaculous/show/SortableListsDemo In th

Re: [Rails-spinoffs] Netvibes.com / Scriptaculous

2006-02-13 Thread Jerod Venema
Ed,I'd go with the sortables, and create maybe 3 different lists (or sets of divs, whatever). You can use the sortable options to allow them to be dragged/dropped between lists. Check out the tests and you'll find its pretty much cut-n-paste to get at least the basic functionality, if not the AJAXi

Re: [Rails-spinoffs] Netvibes.com / Scriptaculous

2006-02-13 Thread Ed C.
I've been tasked with creating an "at-a-glance" report, ie dashboard, with 'widgets' for top-n recent orders, current users, most recent order, etc. How can I get scriptaculous's Sortables to behave similarly? Or should I be looking into using the Draggables & Droppables directly? On 2/13/06, Dan

Re: [Rails-spinoffs] Netvibes.com / Scriptaculous

2006-02-13 Thread Danger Stevens
Is it possible to create a "dashboard" type application, like Netvibes.com, w/ script.aculo.us?If you look in the source for the Netvibes page you'll see they make extensive use of prototype.js Scriptaculous is exactly the library you'd want to use to build something like Netvibes.    - Danger

[Rails-spinoffs] Netvibes.com / Scriptaculous

2006-02-13 Thread Ed C.
Hi list, Is it possible to create a "dashboard" type application, like Netvibes.com, w/ script.aculo.us? ___ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

RE: [Rails-spinoffs] Autocomplete shows up behind td in firefox -fixable?

2006-02-13 Thread Dylan Greene
No, because I want the autocomplete to start working before the table finishes loading (users can be impatient). Great idea though, if I can't find a workaround I'll do that. -- Dylan Greene http://www.DylanGreene.com http://www.CourseReviews.com > -Original Message- > From: [EMAIL

Re: [Rails-spinoffs] Where do you want patches sending?

2006-02-13 Thread Todd Ross
On 2/13/06, Robin Haswell <[EMAIL PROTECTED]> wrote: > I've sent two patches to this mailing list now with not so much as a > word from the devs. Is this the right place to send them, and if not, > why wasn't it easy for me to find the place on that "bug tracker" ? The bug tracker is at http://dev

[Rails-spinoffs] Where do you want patches sending?

2006-02-13 Thread Robin Haswell
I've sent two patches to this mailing list now with not so much as a word from the devs. Is this the right place to send them, and if not, why wasn't it easy for me to find the place on that "bug tracker" ? -Rob ___ Rails-spinoffs mailing list Rails-s

Re: [Rails-spinoffs] Autocomplete shows up behind td in firefox - fixable?

2006-02-13 Thread Robin Haswell
I'm not gonna bother trying to work out that HTML, but have you tried placing the autocomplete div after the offending table? Apologies if it already is. -Rob Dylan Greene wrote: With Ajax Autocomplete the autocomplete div is overlaped by the next TD in the table in Firefox only (both PC/Mac)

[Rails-spinoffs] Autocomplete shows up behind td in firefox - fixable?

2006-02-13 Thread Dylan Greene
With Ajax Autocomplete the autocomplete div is overlaped by the next TD in the table in Firefox only (both PC/Mac). I've tried messing with the z-index but it didn't fix it. Check it out here by typing a professor first or last name. http://www.testing.coursereviews.com/professors/newreview On

[Rails-spinoffs] moofx - scriptaculous

2006-02-13 Thread Marco M. Jaeger
I was wondering whether somebody could point me to some documentation on how I would convert a moofx class to scriptaculous.   Please see this very basic class:   fx.ScrollThumbs = Class.create(); fx.ScrollThumbs.prototype = Object.extend(new fx.Base(), {      initial

Re: [Rails-spinoffs] Effect Help

2006-02-13 Thread Danger Stevens
I'm still trying to work out how to do a blind up to make an element appear and a blind down to disappear. I haven't been able to adequate decipher the core effects to figure out how to make it happen, although I can see that it'll require Effect.scale. Can anyone point me to documentation that'd

Re: [Rails-spinoffs] [PATCH] Allow generic autocompleter (Ajax.Watcher)

2006-02-13 Thread Robin Haswell
Um no, in-house project, but it's not difficult. new Ajax.Watcher(element, url, callback, options); Callback receives the ajax response. It gets passed to onSuccess in Ajax.Request. One interesting options - firstRun (bool), set whether the ajax request + callback should be performed on instan

Re: [Rails-spinoffs] [PATCH] Allow generic autocompleter (Ajax.Watcher)

2006-02-13 Thread Deco Rior
Do have an example for this On Feb 13, 2006, at 10:10 AM, Robin Haswell wrote: Hey. Below is a patch to allow generic Ajax.Autocompleters. Basically it's for people who wanna be able to watch an input for changes, but don't want it to pop up an autocompleter box below. Useful for live previews,

[Rails-spinoffs] [PATCH] Allow generic autocompleter (Ajax.Watcher)

2006-02-13 Thread Robin Haswell
Hey. Below is a patch to allow generic Ajax.Autocompleters. Basically it's for people who wanna be able to watch an input for changes, but don't want it to pop up an autocompleter box below. Useful for live previews, that kind of thing. Someone's gonna have to fix the tabstops. I couldn't be arse

Re: [Rails-spinoffs] Insertion.top & tables

2006-02-13 Thread Deco Rior
Now that makes sense!! I guess being sloppy finally catches up with you! Deco On Feb 13, 2006, at 9:40 AM, Whitcraft, Jon wrote: That is correct. You have to have a tbody with an id attribute or a thead with an id attribute for it to work correctly. Jon Whitcraft Web Application Developer On

RE: [Rails-spinoffs] Insertion.top & tables

2006-02-13 Thread Whitcraft, Jon
That is correct. You have to have a tbody with an id attribute or a thead with an id attribute for it to work correctly. Jon Whitcraft Web Application Developer Online Services - Indianapolis Motor Speedway (317) 492-8623 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECT

RE: [Rails-spinoffs] Insertion.top & tables

2006-02-13 Thread Gregory Hill
Maybe I'm mistaken, but I don't think putting a div inside a table is valid HTML. You should probably use a tbody element. Greg > -Original Message- > From: [EMAIL PROTECTED] [mailto:rails-spinoffs- > [EMAIL PROTECTED] On Behalf Of Deco Rior > Sent: Monday, February 13, 2006 8:56 AM > To

[Rails-spinoffs] Insertion.top & tables

2006-02-13 Thread Deco Rior
I have had trouble making Insertion.top work with tables I would like to do something like First entry Second entry so that Insertion.top inserts the new row above the first entry. So far this has not worked. Has anyone else tried this? Deco ___

Re: [Rails-spinoffs] Effect Help

2006-02-13 Thread Yehuda Katz
Hi all,I'm still trying to work out how to do a blind up to make an element appear and a blind down to disappear. I haven't been able to adequate decipher the core effects to figure out how to make it happen, although I can see that it'll require Effect.scale. Can anyone point me to documentation

Re: [Rails-spinoffs] Not able to see length in another function

2006-02-13 Thread Todd Ross
On 2/12/06, Kevin Old <[EMAIL PROTECTED]> wrote: > Any ideas what could be causing this? There are two pieces of information missing. 1) How is model defined (the HTML / DOM bit). 2) How is setModel being called? Also of interest ... what browser is causing you problems? Do you have a site we

Re: [Rails-spinoffs] would like to have the input text highlighted in the autocomplete div

2006-02-13 Thread Chris Lear
* Bob Silva wrote (13/02/06 09:58): > Cant. If you write a patch you can. I imagine it will work its way into > scriptaculous eventually. Here's some code from DWR: / * Copyright 2005 Joe Walker * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file exc

RE: [Rails-spinoffs] would like to have the input text highlighted inthe autocomplete div

2006-02-13 Thread Bob Silva
Cant. If you write a patch you can. I imagine it will work its way into scriptaculous eventually. Bob Silva http://www.railtie.net/ > -Original Message- > From: [EMAIL PROTECTED] [mailto:rails-spinoffs- > [EMAIL PROTECTED] On Behalf Of Agarwal, Shyam > Sent: Monday, February 13, 2006 1:42

[Rails-spinoffs] would like to have the input text highlighted in the autocomplete div

2006-02-13 Thread Agarwal, Shyam
Hello everyone, I would like to have the input text highlighted in the autocomplete div (similar to google suggest) Any ideas how I can get this working with the autocomplete class ? Thanks, Shyam ___ Rails-spinoffs mailing list Rails-spinoffs@lists.r

Re: [Rails-spinoffs] Thomas Fuchs? Helping with Scriptaculous

2006-02-13 Thread Thomas Fuchs
Yeah, back now. Hope to be able to answer any questions you might have. :)Also, try the #prototype irc channel, i should be hanging out  there as well.Chris: nice to meet you again in London. :)-ThomasAm 07.02.2006 um 19:09 schrieb Chris Korhonen:He is usually quite active on this list, though has