Hey, I''m trying to create a UL list that has floating li''s in it (horizontal list) but when I do this the sort no longer works.. Is there a way to do this? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Try display:inline, rather than float. See the demo at: http://wiki.script.aculo.us/scriptaculous/show/SortableFloatsDemo TAG On Apr 16, 2007, at 9:08 AM, Sontek wrote:> > Hey, I''m trying to create a UL list that has floating li''s in it > (horizontal list) but when I do this the sort no longer works.. Is > there a way to do this? > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
On Apr 16, 9:16 am, Tom Gregory <t...-PGZyUNKar/Q@public.gmane.org> wrote:> Try display:inline, rather than float.The issue is trying to create "columns". My idea is to wrap the ul in a div, float the li''s to the left, and then the wrapper div can constrain them so that it looks like there are multiple columns.> > See the demo at:http://wiki.script.aculo.us/scriptaculous/show/SortableFloatsDemo > > TAG > > On Apr 16, 2007, at 9:08 AM, Sontek wrote: > > > > > Hey, I''m trying to create a UL list that has floating li''s in it > > (horizontal list) but when I do this the sort no longer works.. Is > > there a way to do this?--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
> The issue is trying to create "columns". My idea is to wrap the ul in > a div, float the li''s to the left, and then the wrapper div can > constrain them so that it looks like there are multiple columns.I just tried display: inline; It is horribly buggy in IE7 (i''ve noticed the sortable script doesn''t work well at all in IE7 anyways, but using inline made it worse) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
> I just tried display: inline; It is horribly buggy in IE7 (i''ve > noticed the sortable script doesn''t work well at all in IE7 anyways, > but using inline made it worse)using overlap: ''horizontal'' from the documentation in http://wiki.script.aculo.us/scriptaculous/show/Sortable.create seems to work pretty well =) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Yeah, ... it would. =) I''d forgotten about it, but that''s what it was designed for. The demo I linked you to uses that option.... Are you still seeing problems in IE? Can you be more specific? TAG On Apr 16, 2007, at 9:25 AM, Sontek wrote:> >> I just tried display: inline; It is horribly buggy in IE7 (i''ve >> noticed the sortable script doesn''t work well at all in IE7 anyways, >> but using inline made it worse) > > using overlap: ''horizontal'' from the documentation in > http://wiki.script.aculo.us/scriptaculous/show/Sortable.create seems > to work pretty well =)--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---