Taylor Strait wrote: > Silly though it may be, I can't get a list to be draggable. I haven't > set up the update partials but I can't even get the elements to become > draggable. Here is what my HTML output is: > > <head> > <script src="/javascripts/dragdrop.js?1230671275" > type="text/javascript"></script>
Apparently drag and drop doesn't work with just dragdrop.js as specified in an older rails tutorial. You need the full prototype library. Using javascript_include_tag :defaults fixed this issue. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

