7

我真的很难使用控制器服务加载 jsGrid。我无法正确地做到这一点。

我什至尝试了来自 jsGrid 站点演示的示例代码,但这也不起作用,要么在 !this.data.length 处引发错误,要么根本不加载网格。

每次尝试使用以下代码时,我都没有得到任何数据。

感谢是否有人可以提供帮助。

这是加载 jsGrid 的方式:

$(element).jsGrid({
   height: 300,
   width: "100%",
    filtering: true,
    sorting: true,
    paging: true,
    autoload: true,
    pageLoading: true,

    controller: {
        loadData: function (filter) {
            $.ajax({
                type: "GET",
                url: "../Common/GetData",
                data: filter,
                dataType: "JSON"
            });
        }
    },
    pageSize: 10,
    pageButtonCount: 5,
    pageIndex: 1,

    noDataContent: "No Record Found",
    loadIndication: true,
    loadIndicationDelay: 500,
    loadMessage: "Please, wait...",
    loadShading: true,

    fields: [
        { name: "Name", type: "textarea", width: 150 },
        { name: "Age", type: "number", width: 50 },
        { name: "Address", type: "text", width: 200 },
        { name: "Country", type: "select" },
         {
             name: "", type: "text", width: 50, sorting: false, filtering: false,
             itemTemplate: function (value) {
                 return '<div class="edit-container"><a class="edit-custom-field-link">Edit</a><div class="sort-icon-container"><div class="up-arrow-icon"></div><div class="down-arrow-icon"></div></div></div>';
             }
         }
        //{ name: "Married", type: "checkbox", title: "Is Married", sorting: false }
        //,{ type: "control" }
    ]
});
4

3 回答 3

8

您应该在加载数据时使用承诺,

loadData: function(filter) {

  return $.ajax({
        type: "GET",
        url: "../Common/GetData",
        data: filter,
        dataType: "JSON"
    })

}

return $.ajax({})确实返回了一个 Promise。谢谢你

于 2016-02-27T12:10:10.513 回答
6

我也遇到了 JSGrid 的问题。我正在使用以下代码段(正如一些人所建议的那样):

`

loadData:   function(filter) {
    console.log("LoadData called....")
    var d = $.Deferred();
    $.ajax({
      type: "GET",
      url: "/secure/msgitems",
      data: filter
    }).done(function(response) {
      console.log(  response);
      d.resolve(response);
      return;
  });
 return d.promise();
 },
},

`

我可以看到结果回来了,但我的 jsGrid 一直在呕吐。事实证明,服务器必须以以下格式返回数据:

{
data: [items], itemsCount: amountOfItems }

这里是开发者讨论这个话题的地方:https ://github.com/tabalinas/jsgrid/issues/35

它似乎工作...... FWIW

于 2016-11-11T15:10:34.940 回答
0

要返回一个承诺,试试这个 loadData 的代码:

            loadData: function() {
            var d = $.Deferred();

            $.ajax({
                type: 'GET',
                url: '../Common/GetData',
                dataType: "json",
                success: function (data) {
                    d.resolve(data);
                },
                error: function(e) {
                    alert("error: " + e.responseText);
                }
            });

            return d.promise();
        }
于 2016-06-14T22:16:44.637 回答