这个在可排序函数中拖动时缩小表行的问题让我困扰了很长时间。有答案吗? (Q&安培; A)
P.S。为了使sortable可以在表上工作,你必须在你想要排序的表行周围使用TBODY,然后在包含TBODY的上调用可排序函数。
答案 0 :(得分:38)
.ui-sortable-helper {
display: table;
}
答案 1 :(得分:12)
您需要做的就是为表格单元格提供特定的像素宽度。如果不知道表格单元格的内容,我们怎么做呢?简单:
$(document).ready(function(){
$('td').each(function(){
$(this).css('width', $(this).width() +'px');
});
});
答案 2 :(得分:10)
我在网上偶然发现了一个解决方案。
var fixHelper = function(e, ui) {
ui.children().each(function() {
$(this).width($(this).width());
});
return ui;
};
$(“#sort tbody”).sortable({
helper: fixHelper
}).disableSelection();
答案 3 :(得分:-1)
所提供的解决方案都不适合我。
在我的例子中,jQuery的ui sortable的计算高度和宽度被向下舍入并通过style属性覆盖自动计算的维度。
以下是我为解决问题所做的工作,我发现它比大多数提供的解决方案更优雅。 (即使它中有!important
个。)
.ui-sortable-helper {
width: auto !important;
height: auto !important;
}
答案 4 :(得分:-4)
src jquery-1.12.4.js
src jquery-ui.js
link rel jquery-ui.css
@model Servidor.CListados
@{
ViewBag.Title = "Index";
}
@using (Html.BeginForm())
{
<h2>Listados</h2>
<h2>@ViewBag.Mensaje</h2>
<table>
<tr>
<th>Campo1</th>
<th>Campo2</th>
</tr>
<tbody id="sortable">
@foreach (var item in Model.ListaTabla1)
{
<tr >
<td>@Html.DisplayFor(modelItem => item.Campo1)</td>
<td>@Html.DisplayFor(modelItem => item.Campo2)</td>
</tr>
}
</tbody>
</table>
@*<ul id="sortable">
@foreach (var item in Model.ListaTabla1)
{
<li>@Html.DisplayFor(modelItem => item.Campo1)</li>
}
</ul>*@
}
<script>$("#sortable").sortable();</script>