Rails 3.1:使用acts_as_list gem 未定义sortable_element - 如何修复?
如何从acts_as_list gem 中获取sortable_element 以便与Rails 3.1 良好配合?我认为这是因为使用了jquery而不是prototype所以我失去了那个辅助方法?这是对的吗?在什么情况下这意味着我需要使用 jrails(以及如何在 Rails 3.1 中最好地做到这一点)?
How do I get sortable_element from the acts_as_list gem to work nice with Rails 3.1? I think it's because jquery is used instead of prototype so I lose that helper method? Is this right? In which case does that mean I need to use jrails (and how best to do this in Rails 3.1)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为如果你已经迁移到 Rails 3.1 并且你只是使用acts_as_list作为给自己提供漂亮的ajax-y可移动列表的方式 - 向上和向下 - 那么你可能会更好,就像我刚刚所做的那样,遵循这里很棒的小演练 http://practiceovertheory.com/blog/2009/08/06/sortable-lists-with-jquery-in-rails/ 并放弃 gem。
I think if you've moved to Rails 3.1 and you're just using acts_as_list as a way to give yourself nice ajax-y moveable lists - up and down - then you might be better off, as I've just done, following the great little walkthrough here http://practiceovertheory.com/blog/2009/08/06/sortable-lists-with-jquery-in-rails/ and ditching the gem.