我正在使用jquery 可排序功能,但我遇到了一些问题。
我的标题 'Name' 'Date from' 'Date To' 'Priority' 是可移动的,它不应该是。我不能把它放在桌子上的其他任何地方,这也是不可能的,所以没关系。
第一个表的代码:
HTML:
<table id="sort" class="table table-striped table-bordered table-condensed">
<tbody>
<tr>
<th class="cellWidth40"> Name</th>
<th class="cellWidth20"> Date from </th>
<th class="cellWidth20"> Date to </th>
<th class="cellWidth15"> Priority</th>
<th></th>
</tr>
</tbody>
@foreach (var item2 in Model.ContinuousRouteModels.Where(p => p.Active).OrderBy(p => p.Priority))
{
<tr class="priorityRow">
<td id="tableDragSort">
@Html.HiddenFor(modelItem => item2.Id, new { @class = "routeIdentifier" })
@Html.DisplayFor(modelItem => item2.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item2.ValidFrom)
</td>
<td>
@Html.DisplayFor(modelItem => item2.ValidTo)
</td>
<td class="routePriority">
<span>@Html.DisplayTextFor(modelItem => item2.Priority)</span>
</td>
<td class="cellWidth5">
<a href="@Url.Action("Copy", "Route", new { id = item2.Id })"><i class="icon-file" alt="Kopiere rute" ></i></a>
<a href="@Url.Action("Edit", "Route", new { id = item2.Id })"><i class="icon-edit" alt="Redigere rute"></i></a>
<a class="deleteLink" href="@Url.Action("DeleteRoute", "Route", new { id = item2.Id })"><i class="icon-trash" alt="Slette rute"></i></a>
</td>
</tr>
}
</table>
查询:
$("#sort tbody").css("cursor", "n-resize");
$("#sort tbody").sortable({
helper: fixHelper,
opacity: 0.5,
update: function(event, ui) {
updatePriorityTable();
}
}).disableSelection();
第二张表:
“您的路由模式 ID 延迟”
我的另一个应该几乎相同的表具有不同的行为。此表中的表头可以移动,也可以放在表内。两者都不应该
有谁知道出了什么问题?
第二个表的代码:
HTML:
<table id="RoutePatternBusStops" class="table table-striped table-bordered table-condensed" style="width:270px">
<tbody>
<tr>
<th style="text-align: left">Your routepattern</th>
<th>Id</th>
<th>Delay</th>
</tr>
</tbody>
@foreach (var item2 in Model.RoutePatternBusStops.OrderBy(p => p.Delay))
{
<tr>
<td>
<input name="RoutePatternBusStops.BusStopId" type="hidden" value="@item2.BusStop.Id">@item2.BusStop.Name
</td>
<td>
@item2.BusStop.Id
</td>
<td>
<input type="text" style="width: 20px" name="RoutePatternBusStops.Delay" value="@item2.Delay">
</td>
</tr>
}
</table>
查询:
$("#RoutePatternBusStops tbody").css("cursor", "n-resize");
$("#RoutePatternBusStops tbody").sortable({
helper: fixHelper,
opacity: 0.5,
update: function(event, ui) {
}
}).disableSelection();