我正在尝试使用jQuery创建一个.sortable
表。 fixWidthHelper
类保留表格列宽。 (我删除了一些HTML)
表HTML:
<table class = "table table-bordered" >
hr content here...
<tbody id = "field_wrapper">
<tr>
<td id = "move">...</td>
<td id = "move">...</td>
</tbody>
</table>
jQuery的:
$(function (sort) {
sortable_tables.sorting_field_table();
});
var sortable_tables =
{
sorting_field_table: function(sort)
{
$('#field_wrapper').sortable({
placeholder: "drop",
helper: sortable_tables.fixWidthHelper
}).disableSelection();
}
fixWidthHelper: function(e, ui) {
ui.children().each(function(sort) {
$(this).width($(this).width());
});
return ui;
}
});
CSS:
#move{ margin-left: 0px; padding-right:10px; cursor: move;}
.drop {
outline: thin dashed #CCC !important;
background-color:#CCC;
width:100%;
}
答案 0 :(得分:1)
代码的第一个块只是在document.ready
上定义一个函数,但它不会在任何地方调用。
另外,我在这里看不到任何实际执行任何排序的内容。
答案 1 :(得分:0)
我有它的工作!
<强> jQuery的:强>
$(function() {
$( "#field_wrapper" ).sortable({
placeholder: "drop"
});
$( "#field_wrapper" ).disableSelection();
});