我正在尝试对表的行进行排序,并将它们作为表行的“子元素”
我发现了这个:http://code.google.com/p/nestedsortables/这适用于ul li列表,但我想为表格构建它。
<table>
<thead>
<th>tablehead</th>
</thead>
<tbody>
<tr><td>somevalue</td></tr>
<tr><td>somevalue2</td></tr>
</tbody>
</table>
所以你可以使用jquery.sortable()
并对行进行排序,但如果你将'somevalue'拖到'somevalue2'上,我希望'somevalue'成为'somevalue2'的子元素
我不知道是否可以使用表格。
任何人都可以帮助我吗?
答案 0 :(得分:3)
好的,所以我找到了这个插件:http://ludo.cubicphuse.nl/jquery-plugins/treeTable/doc/index.html#example-1
这使用表格并允许它嵌套。
现在我只需要对它进行排序并使用父ID发布提交表元素,以便将其保存到数据库中。
我希望这有助于其他人。
所以这就是我想出来的。 我不想要超过2级(只有父母和孩子),所以我改变它让父母只接受孩子,而不是让父母可以拖延。
<html>
<head>
<link href="jquery.treeTable.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery-ui.js"></script>
<script type="text/javascript" src="jquery.treeTable.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#dragndrop").treeTable();
// Drag & Drop Code
$("#dragndrop .child").draggable({
helper: "clone",
opacity: .75,
refreshPositions: true, // Performance?
revert: "invalid",
revertDuration: 300,
scroll: true
}
);
$("#dragndrop .parent").each(function() {
$($(this).parents("tr")[0]).droppable({
accept: ".child",
drop: function(e, ui) {
$($(ui.draggable).parents("tr")[0]).appendBranchTo(this);
setNewParent($($(ui.draggable).parents("tr")[0]).attr("id"), $(this).attr("id"));
},
hoverClass: "accept",
over: function(e, ui) {
if(this.id != $(ui.draggable.parents("tr")[0]).id && !$(this).is(".expanded")) {
$(this).expand();
}
}
});
});
function setNewParent(child, parent)
{
// do ajax call here
alert(child);
alert(parent);
}
});
</script>
</head>
<body>
<table id="dragndrop">
<thead>
<tr>
<th>Title</th>
<th>Size</th>
<th>Kind</th>
</tr>
</thead>
<tbody>
<tr id="node-1">
<td><span class="parent">CHANGELOG</span></td>
<td>4 KB</td>
<td>Parent</td>
</tr>
<tr id="node-3" class="child-of-node-1">
<td><span class="child">images</span></td>
<td>--</td>
<td>child</td>
</tr>
<tr id="node-2">
<td><span class="parent">doc</span></td>
<td>--</td>
<td>Parent</td>
</tr>
<tr id="node-4" class="child-of-node-2">
<td><span class="child">bg-table-thead.png</span></td>
<td>52 KB</td>
<td>child</td>
</tr>
<tr id="node-5" class="child-of-node-2">
<td><span class="child">folder.png</span></td>
<td>4 KB</td>
<td>child</td>
</tr>
</tbody>
</table>
</body>
为了使整个表可以排序,你可以使用jQuery的.sortable()
函数,但我把它留在了这里,以使它更清晰。