防止可排序

时间:2012-09-12 07:27:50

标签: jquery asp.net-mvc-3

我正在使用jquery sortable function,但我遇到了一些问题。

我的标题'名称''日期从''日期到''优先'是可移动的,它不应该是。我不能把它放在桌子的任何其他地方,这也是不可能的,所以没关系。

第一张表的代码:

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>

JQUERY:

$("#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>

JQUERY:

$("#RoutePatternBusStops tbody").css("cursor", "n-resize");
    $("#RoutePatternBusStops tbody").sortable({
        helper: fixHelper,
        opacity: 0.5,
        update: function(event, ui) {

        }
    }).disableSelection();

1 个答案:

答案 0 :(得分:2)

将标题放在<thead></thead>而不是<tbody></tbody>