我想用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()
但问题是我无法将其排序为无序列表(如果您知道我的意思,所有子元素也将被排序。
答案 0 :(得分:0)
我无法理解您的可选择的可选择器。 但这是我的镜头。 Bdw不错的ui!
var sort_a=$("table").sortable({ items: 'tr',handle:'.t_title' });
当你添加新的tr tell sortable来刷新时。
sort_a.sortable( "refresh" );