[Rails-spinoffs] Re: Using Sortable Trees?

2006-06-01 Thread Eric Anderson
Will Merrell wrote: The part I don't understand is how to move a leaf node below an existing leaf node. [...snip description...] Am I missing something or is this not yet supported. Is it planned? Does anyone have any suggestions? You are correct. The Script.aculo.us sortables only supports d

[Rails-spinoffs] Using Sortable Trees?

2006-06-01 Thread Will Merrell
I have been looking at the new Sortable Trees in Scriptaculous, and I want to use it for some parts of my app. The part I don't understand is how to move a leaf node below an existing leaf node. It appears that the user can move a node and drop it as a leaf under a branch, but only if that bra

[Rails-spinoffs] IE header max length (for X-JSON)

2006-06-01 Thread John Wang
Does anyone know what the max length for a header in IE is? When my X-JSON value is 138 bytes, it works fine but when it's 1659 it fails. Is this documented anywhere? Thanks, John ___ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http:

Re: [Rails-spinoffs] Drag'n'Drop out of overflow:auto containers

2006-06-01 Thread Ryan Gahl
Check out my posts from back in February on this topic... my version of dragdrop.js uses cloning to overcome this problem... http://wrath.rubyonrails.org/pipermail/rails-spinoffs/2006-February/002599.htmlOn 6/1/06, Jonathan Weiss < [EMAIL PROTECTED]> wrote:Cheers,Tom Gregory wrote:> I've used somet

Re: [Rails-spinoffs] Drag'n'Drop out of overflow:auto containers

2006-06-01 Thread Jonathan Weiss
Cheers, Tom Gregory wrote: I've used something similar to the following: var ListDragObserver = Class.create(); ListDragObserver.prototype = { initialize: function(element) { this.element = $(element); }, onEnd: function (eventName, draggable, event) { this.element.style.overf

[Rails-spinoffs] adding content upward during Effect.SlideXXXX

2006-06-01 Thread Danial Tzadeh
Hey all, I am thinking of developing a new user panel for my site and till now I was doing it on the top of the page and when I use toggle+slide it was working fine as the contents are added to the below section (all the page moves down)... However, This time I want to add it to the bottom of the

[Rails-spinoffs] Re: comma separated autocompletion, like in Google Bookmarks, GMail, ..

2006-06-01 Thread Alain Ravet
Maninder, Singh wrote: >>From the wiki - We badly need a downloadable and printable documentation, with a single entry point. Alain Ravet ___ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/l

[Rails-spinoffs] Re: comma separated autocompletion, like in Google Bookmarks, GMail, ..

2006-06-01 Thread Alain Ravet
> Tokenized autocompletion > new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' }); In Rails, it translates to <%= text_field_with_auto_complete :tagz, :list ,{},{:tokens => [',', '\n']} %> Thanks a lot Mandy. ___ Rails-spino

[Rails-spinoffs] Ajax.Replacer

2006-06-01 Thread Garito
Hi all! How can I do a Ajax.Replacer instead of Ajax.Updater? I created Ajax.Replacer but I would like to include it or don't use it if your library has some code to do this Thanks! -- Mis Cosas http://blogs.sistes.net/Garito/ ___ Rails-spinoffs m

Re: [Rails-spinoffs] Draggables and z-index

2006-06-01 Thread Sam Rowe
On Tue, May 23, 2006 at 02:54:43PM -0400, Martinez, Andrew wrote: # Close. Take out your zIndex option and it should automatically revert for you. The zIndex used while dragging by defaults is 1000 and after you release it should drop back to what it was before. # # The reason it drops behind th