Дата списка страниц mvc теряет значение на второй странице

У меня есть индексная страница с различными параметрами фильтрации, все они включены в PagedList. Все работает нормально, кроме дат.

Когда я впервые фильтрую по дате, они работают нормально, однако, когда я нажимаю номер страницы внизу, критерии поиска моей даты исчезают.

Я вижу, что могу передать поисковый запрос в выгружаемом списке, и я вижу, что эта дата попадает в мой контроллер, и происходит фильтрация, но ViewBag.filterStartDate и ViewBag.filterEndDate по какой-то причине просто не привязываются к моим текстовым полям.

Индекс.cshtml:

@using PagedList.Mvc
@model PagedList.IPagedList<Job>

@using (Html.BeginForm("Index", "Jobs", FormMethod.Get, new { @class = "form-inline", role = "form" }))
{
    <div class="panel panel-default">
        <!-- Default panel contents -->
        <div class="panel-heading">Filter Search Results</div>
        <div class="panel-body">

            <ul class="list-group">
                <li class="list-group-item">
                    @Html.Label("By Id: ", new { @class = "col-md-4 control-label" })
                    @Html.TextBox("filterId", ViewBag.filterId as string, new { @class = "form-control" })
                </li>
                <li class="list-group-item">
                    @Html.Label("By Address Line 1: ", new { @class = "col-md-4 control-label" })
                    @Html.TextBox("filterAddress1", ViewBag.filterAddress1 as string, new { @class = "form-control" })
                </li>
                <li class="list-group-item">
                    @Html.Label("By Username: ", new { @class = "col-md-4 control-label" })
                    @Html.TextBox("filterUsername", ViewBag.filterUsername as string, new { @class = "form-control" })
                </li>
                <li class="list-group-item">
                    @Html.Label("By Contract: ", new { @class = "col-md-4 control-label" })
                    @Html.DropDownList("filterContract", null, "-- Select One --",
                        new { @class = "form-control" })
                </li>
                <li class="list-group-item">
                    @Html.Label("Date Created Start: ", new { @class = "col-md-4 control-label" })
                    @Html.TextBox("filterStartDate", ViewBag.filterStartDate as string, new { @class = "form-control date", type = "date" })
                </li>
                <li class="list-group-item">
                    @Html.Label("Date Created End: ", new { @class = "col-md-4 control-label" })
                    @Html.TextBox("filterFinishDate", ViewBag.filterFinishDate as string, new { @class = "form-control date", type = "date" })
                </li>
                <li class="list-group-item">
                    @Html.Label("By App: ", new { @class = "col-md-4 control-label" })
                    @Html.DropDownList("filterApp", null, "-- Select One --",
                        new { @class = "form-control" })
                </li>
            </ul>

            <input type="submit" value="Apply Filter" class="btn btn-default" />

        </div>

        <div id="items" style="padding: 15px;">
            @Html.Partial("Jobs", Model)
        </div>

    </div>

}

Вакансии.cshtml:

@using System.Web.UI.WebControls
@using PagedList.Mvc
@model PagedList.IPagedList<Job>

@Html.ActionLink("Create New", "Create", null, new { @style = "float: left" })

@Html.ActionLink("Import Jobs", "Import", null, new { @style = "padding-left: 15px" })

@Html.ValidationSummary(true)  

<table class="table">
    <tr>
        <th class="mobileview">
            @Html.DisplayName("JobId")
        </th>
        <th>
            @Html.DisplayName("Description")
        </th>
        <th class="mobileview">
            @Html.DisplayName("Address")
        </th>
        <th class="mobileview">
            @Html.DisplayName("Priority")
        </th>
        <th>
            @Html.DisplayName("Date Created")
        </th>
        <th>
            @Html.DisplayName("Username")
        </th>
    </tr>

    @foreach (var item in Model)
    {
        <tr class="formrow">
            <td class="mobileview">
                @Html.DisplayFor(modelItem => item.JobId)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Description)
            </td>
            <td class="mobileview">
                @Html.DisplayFor(modelItem => item.Address1)
            </td>
            <td class="mobileview">
                @Html.DisplayFor(modelItem => item.Priority)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.DateCreated)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.User.UserName)
            </td>
            <td class="mobileview">
                @Html.ActionLink("View Job", "Details", new { id = item.JobId })
            </td>
            <td class="mobileview">
                @if (item.Data != null)
                {
                    @Html.ActionLink("View Data", "Details", "AppForms", new { id = item.Data.Id }, null)
                }
                else
                {
                    @Html.DisplayFor(modelItem => item.Status)
                }
            </td>
        </tr>
    }

</table>

<p>Page @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) of @Model.PageCount</p>

@Html.PagedListPager(Model, page => Url.Action("Index", new { page, sortOrder = ViewBag.CurrentSort, currentFilter = ViewBag.CurrentFilter, filterAddress1 = ViewBag.filterAddress1, filterId = ViewBag.filterId, filterUsername = ViewBag.filterUsername, filterStartDate = ViewBag.filterStartDate, filterFinishDate = ViewBag.filterFinishDate, filterApp = ViewBag.selectedApp, filterContract = ViewBag.selectedContract }), PagedListRenderOptions.Classic)

Джобсконтроллер.cs:

public ActionResult Index(string sortOrder, string currentFilter, string filterId, string filterAddress1, int? page, String filterApp, String filterContract, DateTime? filterStartDate, DateTime? filterFinishDate, String filterUsername)
{
    //...Other filtering

    //Filter by date
    if (filterStartDate != null)
    {
        jobs = jobs.Where(x => x.DateCreated >= filterStartDate);
        //ViewBag.filterStartDate = filterStartDate.Value.Year + "-" + filterStartDate.Value.Month + "-" + filterStartDate.Value.Day;
        ViewBag.filterStartDate = filterStartDate;
    }

    if (filterFinishDate != null)
    {
        //Make sure we're checking to the end of the end date (ie 01/01/2015 23:59:59)
        filterFinishDate = filterFinishDate.Value.AddHours(23).AddMinutes(59).AddSeconds(59);
        jobs = jobs.Where(x => x.DateCreated <= filterFinishDate);
        //ViewBag.filterFinishDate = filterFinishDate.Value.Year + "-" + filterFinishDate.Value.Month + "-" + filterFinishDate.Value.Day;
        ViewBag.filterFinishDate = filterFinishDate;
    }

    int pageSize = int.Parse(ConfigurationManager.AppSettings["MaxPageItemCount"]);
    int pageNumber = page ?? 1;

    return this.View(jobs.ToPagedList(pageNumber, pageSize));
}

person Martin Crawley    schedule 31.03.2015    source источник
comment
Правильно ли сортируются задания при их возврате из действия индекса?   -  person DerApe    schedule 31.03.2015
comment
На самом деле я не использую сортировку в данный момент. В настоящее время sortOrder не используется. Вместо этого я просто сортирую их все по DateCreated DESC, но я решил опустить эту строку кода, так как не думал, что это важно для проблемы, с которой я столкнулся.   -  person Martin Crawley    schedule 31.03.2015


Ответы (2)


@Html.TextBox() может извлекать значения из ModelState или ViewData.

Попробуйте создать html для ввода даты вручную следующим образом:

<input type="date" name="filterStartDate" id="filterStartDate" class="form-control date" value="@ViewBag.filterStartDate.ToString("yyyy-MM-dd")"/>
person ChaoticNadirs    schedule 31.03.2015
comment
Это решение сработало правильно. Я благодарю вас за то, что поделились своими невероятными знаниями и опытом. - person Martin Crawley; 31.03.2015

Решил проблему, вручную создав ввод даты, а не полагаясь на Razor, чтобы сделать это за меня!

                @if (ViewBag.filterStartDate != null)
                {
                    <input type="date" name="filterStartDate" id="filterStartDate" value="@ViewBag.filterStartDate.ToString("yyyy-MM-dd")" />
                }
                else
                {
                    <input type="date" name="filterStartDate" id="filterStartDate" value="" />
                }
person Martin Crawley    schedule 31.03.2015