Mootools Sortable——上移/下移
我正在使用 Mootools sortables (v1.4)。
我有一个项目列表,并且通过拖/放操作可以很好地进行排序。但是,我还想为每个列表项添加一个“向上/向下”箭头,以便用户也可以根据需要单击向上或向下一个“槽”的项目。
我在文档中没有看到任何有关实现此目的的方法。有办法做到这一点吗?
谢谢!
I'm working with Mootools sortables (v1.4).
I've got a list of items and the sorting works great via drag/drop actions. However, I'd like to also add an "up/down" arrow to each list item so that users could also just click an item up or down one "slot" if they preferred.
I didn't see anything in the docs about a method to accomplish this. Is there a way to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在 DOM 中单击这些箭头来移动列表项呢?它不会弄乱可排序;)
示例代码如下所示:
why don't you just move the list item in the DOM on click of these arrows ? It won't mess with the sortable ;)
An example piece of code could look like this :