我想用 jQuery sortable 对我的嵌套表行进行排序,这样它就可以像<ul>
标签一样工作。
你可以在这里看看:http: //www.studybuddy.at/
只需使用 Google 或 Facebook 帐户或在此处登录
http://www.studybuddy.at/login.php
用户名:stackoverflow
密码:stackoverflow
希望你能帮我
编辑:
我可以像这样对我的任务进行排序:
$("table tbody").sortable(
{
helper:fixHelper,
cancel: "[t_parent='0'],#new_task_row,#date_grid_days,[t_edit='0'],.sub_task_leading_div",
//items: "tr not:(#new_task_row)",
handle: ".task",
revert: true,
delay: 200,
axis:'y',
cursor: 'crosshair',
change: function(event, ui) {
function here...
}
}).disableSelection()
但问题是我不能像无序列表那样对它进行排序(这样所有子元素也会被排序,如果你明白我的意思的话。