jQuery Grid错误

时间:2011-07-02 06:04:00

标签: asp.net-mvc-3 jqgrid

我正在尝试使用jQuery网格。我一直在jquery-1.5.1.js文件中收到此错误。 Microsoft JScript运行时错误:对象不支持此属性或方法

我只是试图运行我在http://haacked.com/archive/2009/04/14/using-jquery-grid-with-asp.net-mvc.aspx找到的代码作为测试

我在控制器中有这个:

    public JsonResult GridData(string sidx, string sord, int page, int rows)
    {
        int totalPages = 1; // we'll implement later
        int pageSize = rows;
        int totalRecords = 3; // implement later

        var jsonData = new
        {
            total = totalPages,
            page = page,
            records = totalRecords,
            rows = new[]{
                new {id = 1, cell = new[] {"1", "-7", "Is this a good question?"}},
                new {id = 2, cell = new[] {"2", "15", "Is this a blatant ripoff?"}},
                new {id = 3, cell = new[] {"3", "23", "Why is the sky blue?"}}
            }
        };
        return Json(jsonData);
    }

在我的Index.cshtml中我有以下

<script type="text/javascript">
        jQuery(document).ready(function () {
            jQuery("#list").jqGrid({
                url: '/Home/GridData/',
                datatype: 'json',
                mtype: 'POST',
                colNames: ['Id', 'Votes', 'Title'],
                colModel: [
      { name: 'Id', index: 'Id', width: 40, align: 'left' },
      { name: 'Votes', index: 'Votes', width: 40, align: 'left' },
      { name: 'Title', index: 'Title', width: 400, align: 'left'}],
                pager: jQuery('#pager'),
                rowNum: 10,
                rowList: [5, 10, 20, 50],
                sortname: 'Id',
                sortorder: "desc",
                viewrecords: true,
                imgpath: '',
                caption: 'My first grid'
            });
        }); 
</script>  

有人可以指导我做错了吗?我从trirand.com获得了最新版本的jqGrid,并将所有文件复制到我的MVC3项目的Script目录中。
感谢您提供任何帮助。

1 个答案:

答案 0 :(得分:0)