如何从另一个页面将参数传递给jqgrid

时间:2013-07-10 06:23:23

标签: jquery asp.net-mvc asp.net-mvc-3 jqgrid parameters

我有报告名称的动态按钮,每次用户点击按钮,它都会显示适用于所有报告的搜索字段(开始日期,结束日期),所有报告都有自己不同的页面显示网格,现在我如何传递参数并打开报告的相应页面并加载jqgrid。我已将这些传递参数存入“OnlineSales”页面,然后加载网格。在此先感谢您的帮助!

点击搜索按钮后,调用OnlineSales页面并传递参数然后在网格中显示数据的语法是什么。

$('#SearchButton').click(function () {
            var _StartDate = $("#StartDate").val();
            var _EndDate = $("#EndDate").val();
});

使用参数

调用OnlineSales视图
@{
    ViewBag.Title = "OnlineSales";
}

@*GRID*@
    <div id="table" class="table">
        <table id="List" class="scroll" cellpadding="0" cellspacing="0"></table>
        <div id="Pager" class="scroll" style="text-align:center;"></div>
    </div>
@*GRID*@

<script type="text/javascript">
jQuery(document).ready(function () {

        jQuery("#List").jqGrid({
            url: 'local',
            postData: { start_date: '', end_date: ''},
            datatype: "json",
            mtype: 'GET',
            colNames: [
                  'First Name',
                  'Middle Name',
                  'Last Name',
                  'Email',
                  'Mobile Number'],
            colModel: [
                  { name: 'FirstName', index: 'FirstName', width: 200, align: 'left' },
                  { name: 'MiddleName', index: 'MiddleName', width: 200, align: 'left' },
                  { name: 'LastName', index: 'LastName', width: 150, align: 'left' },
                  { name: 'Email', index: 'Email', width: 150, align: 'left' },
                  { name: 'MobileNumber', index: 'MobileNumber', width: 80, align: 'left' }],
            pager: jQuery('#Pager'),
            rowNum: 10,
            rowList: [5, 10, 20, 50, 100],
            sortname: 'FirstName',
            width: '1005',
            sortorder: "asc",
            sorttype: 'int',
            viewrecords: true,
            height: 'auto',
            shrinkToFit: false,
            cache: false,
            caption: 'Online Sales'
        });
        jQuery("#List").jqGrid('navGrid', '#Pager', { edit: false, add: false, del: false, search: false, refresh: true });

    });
</script>

我的控制器

public ActionResult OnlineSales(string sidx, string sord, int page, int rows, DateTime start_date, DateTime end_date)
        {
            _DashboardDataAccess = new DashboardDataAccess(0);
            List<OnlineSales> _OnlineSales = _DashboardDataAccess.OnlineSales(start_date, end_date);

            var result = _OnlineSales.AsQueryable().AsEnumerable<OnlineSales>();

            int count = result.Count();
            result = result.Skip((page - 1) * rows).Take(rows);
            int pagecount = (count % rows) == 0 ? (count / rows) : (count / rows) + 1;

            var ReportList = (from r in result
                              select new
                              {
                                  cell = new string[] {
                                  r.FirstName,
                                  r.MiddleName,
                                  r.LastName,
                                  r.Email,
                                  r.MobileNumber
                                  }
                              });
            var jsonData = new
            {
                total = pagecount,
                page = page,
                records = count,
                rows = ReportList.ToArray()
            };

            return Json(jsonData, JsonRequestBehavior.AllowGet);

        }

1 个答案:

答案 0 :(得分:0)

如果我理解您正确查询,请尝试此操作...

StartDateEndDate存储在Session Variables中,然后您可以检查Session Variables发送grid data的位置,并根据{{ 1}}然后您可以构建您的查询。您还需要检查Session Variables,如果nullSession Variables,那么您可以在不null的情况下返回结果。

然后只需导航到您所选报告的Search Parameters所在的页面。然后网格将根据搜索参数(来自会话)加载数据。

<强> EDIT1

另一种方式:

在HTML中定义两个隐藏字段:

grid

然后将值设置为函数中的隐藏字段:

<input type="hidden" name="hiddenStartDate" value="">
<input type="hidden" name="hiddenEndDate" value="">