MVC pagedlist日期在第二页上失去价值 [英] mvc pagedlist date loses value on second page

查看:73
本文介绍了MVC pagedlist日期在第二页上失去价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个索引页面,上面有各种过滤选项,所有这些选项都包含在PagedList中.除日期外,它们似乎都工作正常.

I have an Index page with various filtering options on it, all included within a PagedList. They all appear to be working fine, except for the dates.

当我第一次按日期过滤时,它们可以正常工作,但是当我单击底部的页码时,用于日期的搜索条件就消失了.

When I first filter by date, they work fine however when I click on a page number at the bottom, the search criteria for my date is disappearing.

我看到我可以在页面列表中传递搜索词,并且可以看到此日期命中了控制器,并且发生了过滤,但是ViewBag.filterStartDate和ViewBag.filterEndDate并没有绑定到我的文本框中出于某些原因.

I can see that I can passing the search term in the paged list, and I can see this date hit my controller and the filtering happen but the ViewBag.filterStartDate and ViewBag.filterEndDate just aren't binding back to my textboxes for some reason.

Index.cshtml:

Index.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>

}

Jobs.cshtml:

Jobs.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)

JobsController.cs:

JobsController.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));
}

推荐答案

@ Html.TextBox()可以将值拉出ModelState或ViewData.

@Html.TextBox() can pull values out of the ModelState or ViewData.

尝试像这样手动为输入的日期构建html:

Try building the html for the date input manually like this:

<input type="date" name="filterStartDate" id="filterStartDate" class="form-control date" value="@ViewBag.filterStartDate.ToString("yyyy-MM-dd")"/>

这篇关于MVC pagedlist日期在第二页上失去价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆