[Proto-Scripty] Re: License question

2009-07-27 Thread Tobie Langel
Hi, You'll find the exact terms of the Prototype license here: http://github.com/sstephenson/prototype/blob/add69978e09653808aedec43ed551df22818ee30/LICENSE It's an MIT license. Hope this clarifies your issue. Best, Tobie On Jul 26, 8:37 pm, hussayn hussayn.dabb...@saxess.com wrote: Hi;

[Proto-Scripty] Re: what causes this? prototype/javascript/php ?!

2009-07-27 Thread Richard Quadling
2009/7/26 Alex McAuley webmas...@thecarmarketplace.com: php's json_encode/decode functions... you may need to install them. Good luck Alex Mcauley http://www.thevacancymarket.com - Original Message - From: geoffcox75 g...@freeuk.com To: Prototype script.aculo.us

[Proto-Scripty] Re: Calling more than one effect fails (script.aculo.us)

2009-07-27 Thread Diodeus
Don't use the onload event in the body tag. Your script starts running before the DOM is ready. Use this instead in a script block: document.observe(dom:loaded, function() { start() }); See: http://www.prototypejs.org/api/document/observe On Jul 25, 8:16 am, bill stefan@googlemail.com

[Proto-Scripty] Re: Calling more than one effect fails (script.aculo.us) - Correction

2009-07-27 Thread mr_justin
Do not call the Effect method with a non-existent element ID. if ($('foo')) new Effect.Highlight('foo'); // or: $('foo').highlight(); --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group.

[Proto-Scripty] Re: IE autocompleter out of place. Firefox works ok.

2009-07-27 Thread G. Sharon Yang
There are quite a few threads regarding this issue, just search autocomplete in this group. For example: http://groups.google.com/group/prototype-scriptaculous/browse_thread/thread/8aac295a1affa481 -S. On Fri, Jul 24, 2009 at 2:02 PM, ror-dev244mma...@gmail.com wrote: Hi, I'm using

[Proto-Scripty] Drop Zone for Sortables?

2009-07-27 Thread mr_justin
I was just looking at the wiki page for creating sortables here: http://wiki.github.com/madrobby/scriptaculous/sortable-create And saw that somebody has patched Scripty to insert drop zone placeholders while dragging: http://tanrikut.blogspot.com/search/label/Scriptaculous However the last

[Proto-Scripty] javascript slider value to php form post

2009-07-27 Thread autocat
js noob here... how do I pass a slider's changed value into a querystring or form? I want to reload the page and use the slider's changed value to set image widths. This is the slider script I'm using: script type=text/javascript window.onload = function() { new

[Proto-Scripty] Re: RJS-Template and link_to_remote

2009-07-27 Thread T.J. Crowder
Hi, This group is for discussing Prototype and script.aculo.us, most of us have never used Ruby or Rails. You're probably better off posting to the Rails group[1]. [1] http://groups.google.com/group/rubyonrails-talk Good luck with it, -- T.J. Crowder tj / crowder software / com Independent

[Proto-Scripty] Re: javascript slider value to php form post

2009-07-27 Thread Alex McAuley
save it in a window variable or somehting then get it onChange: function(v){ $('changed').innerHTML = 'Changed Value : '+v; window.sliderValue=v; }, onSlide: function(v) { $('sliding').innerHTML = 'Sliding Value: '+v; window.sliderValue=v; } then you

[Proto-Scripty] Re: Use Sortable for reordering two-column design

2009-07-27 Thread mr_justin
Looks like Sortable supports this behavior out of the box. Maybe if the documentation was up to date this would have been obvious. Zing! Maybe I should update the documentation then, eh? :) The key to making this work in a container with multiple columns is creating the sortable on the container

[Proto-Scripty] Re: Drop Zone for Sortables?

2009-07-27 Thread mr_justin
Update: got it figured out, at least for the most part. I found that patched code to be overkill for the current version of scriptaculous (1.8.2) which is maybe why it hasn't been updated since 1.8.1. I still had to patch the Sortable#mark method (function wrapping to the rescue) but other than

[Proto-Scripty] Autocompleter inconsistently assigning class 'selected'

2009-07-27 Thread ror-dev244
Hi, I'm using the latest script.aculo.us (1.8.2) and prototype version with Ruby on Rails app. I am implementing autocomplete on two pages (browse and queue), on queue page, my autocomplete text form works fine. However in browse it doesn't although I call it the same way. In browse, no

[Proto-Scripty] problem with ajax IE8 encoding

2009-07-27 Thread Miguel Beltran R.
Hi list I load data using AJAX calls, work fine on FF, but on IE8 show bad characters. The header docuement: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; html head meta http-equiv=Content-Type content=text/html; charset=utf-8 meta