用于访问不同页面

时间:2017-02-02 03:27:05

标签: javascript jquery asp.net-mvc asp.net-mvc-4

实际上,我有一个表格式布局来显示clicnic运营时间的时间信息。我在该表中有一个编辑按钮。每行都有一个名为 sysId 的id属性。因此,当我单击编辑时,它会重定向到编辑页面。我的编辑页面如下图所示:

img

显示诊所营业时间的代码

    @using (Html.BeginForm())
{
    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)
       <div class="table-responsive">
                        <table class="table table-bordered" id="sample_editable_1">
                            <thead>
                                <tr>
                                    <th style="display:none;">Id</th>
                                    <th>Day</th>

                                    <th>Morning Start Time</th>
                                    <th>Morning End Time</th>
                                    <th>Afternoon Start Time</th>
                                    <th>Afternoon End Time</th>
                                    <th>Evening Start Time</th>
                                    <th>Evening End Time</th>
                                    <th>Actions</th>
                                </tr>
                            </thead>
  <tbody>
            @foreach (var item in Model.ProviderWrkHours)
               {
                   <tr>
                   <td style="display:none;">@item.SysID</td>
                   <td>@item.DayType</td>
                   <td contenteditable="true" style="text-align: center;">@item.MorningStartTime</td>
                   <td contenteditable="true" style="text-align: center;">@item.MorningEndTime</td>                                           @*      <td contenteditable="true">@item.MorningEndTime</td>*@
                    <td contenteditable="true" style="text-align: center;" @*id="editor"*@>@item.AfterNoonStartTime</td>
                   <td contenteditable="true">@item.AfterNoonEndTime</td>
                   <td contenteditable="true" style="text-align: center;">@item.EveningStartTime</td>
                   <td contenteditable="true">@item.EveningEndTime</td>
                   <td style="color:#0026ff">
                    @Html.ActionLink(" Edit", "UpdateTimings", "ClinicTimings", new { sysid = item.SysID }, new { @class = "fa fa-pencil" })
                    </td>
                    </tr>
                    }
                   </tbody>
</table>
</div>
}

那么当我使用当前页面中的一些javascript单击右箭头时,如何访问下一个sysid信息(我的意思是表的下一行信息)。

1 个答案:

答案 0 :(得分:2)

您可以在控制器中使用此代码(不是确切的代码)。

ViewBag.Next =  model.DBTable()
               .Select(m => m.ID)
               .OrderBy(m => m.ID)
               .Where(x=> x.Id > id)
               .FirstOrDefault()
               .ToString();

ViewBag.Previous =  model.DBTable()
               .Select(m => m.ID)
               .OrderByDesc(m => m.ID)
               .Where(x=> x.Id < id)
               .FirstOrDefault()
               .ToString();