[Proto-Scripty] Animated Drop Down with Scrollbar won't display

2009-11-17 Thread Blue Hand Talking
I am using a script for an animated drop down menu with a scrollbar. It will not display normally. If I run the following script in Firebug: scrollbar.recalculateLayout(); It works just fine. My problem, not having in-depth javascript knowledge, is how I can have the above script called. I have

[Proto-Scripty] Re: Animated Drop Down with Scrollbar won't display

2009-11-18 Thread Blue Hand Talking
, Blue Hand Talking wrote: > I am using a script for an animated drop down menu with a scrollbar. > > It will not display normally. If I run the following script in > Firebug: > > scrollbar.recalculateLayout(); > > It works just fine. My problem,  not having in-depth javascri

[Proto-Scripty] Re: Animated Drop Down with Scrollbar won't display

2009-11-19 Thread Blue Hand Talking
And here is the script for the drop down menu: http://pastie.org/705995 jet On Nov 17, 6:03 pm, Blue Hand Talking wrote: > As a note, the script I am using is at: > >    http://livepipe.net/control/scrollbar > > ...and is by Ryan Johson. > > And a side note to the adm

[Proto-Scripty] Accessing link_to_remote in controller with .find(params[])

2009-11-23 Thread Blue Hand Talking
The following: <% @project_details.each do |project_detail| %> <%= link_to_remote ( :with => "'architect='+ # {project_detail.architect}") %> <% end %> generates {asynchronous:true, evalScripts:true, parameters:'architect=' + 'Jack London ' + ...more stuff

[Proto-Scripty] Re: Accessing link_to_remote in controller with .find(params[])

2009-11-24 Thread Blue Hand Talking
ith => "'architect=#{project_detail.architect}'" The request stream is very particular about spaces and escaping. I was using an example from the official Rails documentation which did not seem to work. Jet On Nov 24, 4:51 am, ColinFine wrote: > On Nov 23, 5:51 pm, Blue H

[Proto-Scripty] Re: Accessing link_to_remote in controller with .find(params[])

2009-11-24 Thread Blue Hand Talking
he Rails helper (view source in your browser), but I   > don't know if that would translate back into what you need to do   > within Rails to get it to do other than it currently does. > > Walter > > On Nov 24, 2009, at 11:34 AM, Blue Hand Talking wrote: >