我想在表格中上下移动行。
我想在移动项目后保存行的顺序,以便下次再次显示表格时,表格将显示以前更新的订单中的数据。
这是我的cshtml:
<table class="table">
<tr>
<th>
</th>
<th>
Item Description
</th>
<th>
Price
</th>
<th>
Quantity
</th>
<th>
Total Price
</th>
</tr>
@foreach(var item in Model.Items)
{
<tr>
<td>
<a href="#" class="up">Up</a>
<a href="#" class="down">Down</a>
</td>
<td>
@Html.DisplayFor(modelItem => item.ItemDescription)
</td>
<td>
@Html.DisplayFor(modelItem => item.ItemPrice)
</td>
<td>
@Html.DisplayFor(modelItem => item.ItemQuantity)
</td>
<td>
@Html.DisplayFor(modelItem => item.ItemTotalPrice)
</td>
<td>
@Html.ActionLink("Edit", "Edit", "Items", new { id = item.ItemID},null) |
@Html.ActionLink("Delete", "Delete", "Items", new { id = item.ItemID }, null)
</td>
</tr>
}