kendo网格没有加载数据webforms

时间:2013-07-12 17:33:24

标签: c# webforms kendo-ui kendo-grid

我很难让kendoGrid从ASPX页面中的Web方法绑定到JSON数据。我不断得到无限的旋转器。 JSON正在从ajax调用中下来。我不知道它为什么不绑定到网格。这是我的JS。

$('#grid').kendoGrid({
    columns: [
           {
               field: "ClientName",
               title: "ClientName"

           }],
    dataSource: {
        type: 'json',
        serverPaging: true,
        schema: {
            data: 'd'
        },
        transport: {
            read: function (options) {
                $.ajax({
                    type: 'POST',
                    url: 'ServiceMonitoring.aspx/GetGridInformation',
                    dataType: 'json',
                    data: '',
                    contentType: 'application/json; charset=utf-8',
                    serverPaging: true,
                    success: function (msg) {
                        options.success(msg.d);
                    }
                });
            }

        }
    },
    height: 200,
    pageSize: 10


});

1 个答案:

答案 0 :(得分:1)

我知道这对你来说太迟了但是尝试使用

数据:JSON.parse(d)

希望这会帮助其他人面对这个问题。

感谢。