4

出于某种原因,我似乎无法在 Kendo UI Grid 中获得更多信息:

网格图像

HTML:

<div id="grid"></div>
<script>
    var remoteDataSource = new kendo.data.DataSource(
    {
        transport:
        {
            read: {
                type: "POST",
                dataType: "json",
                url: "/home/getopportunities/"
            }
        },
        pageSize: 4
    })
    $("#grid").kendoGrid(
        {
            dataSource: remoteDataSource,
            columns: [
                {
                    title: "Title",
                    headerAttributes: {
                        style: "text-align:center"
                    },
                    attributes: {
                        "class": "table-cell"
                    },
                    width: 600,
                    filterable: true
                },
                {
                    title: "Activity Type",
                    headerAttributes: {
                    },
                    attributes: {
                        "class": "table-cell",
                        style: "text-align:center"
                    },
                    width: 100,
                    filterable: true
                },
                {
                    title: "Specialty",
                    filterable: true,
                    headerAttributes: {
                        style: "text-align:center"
                    },
                    attributes: {
                        "class": "table-cell",
                        style: "text-align:center"
                    }
                },
            {
                title: "Total Credits",
                format: "{0}",
                headerAttributes: {
                    style: "text-align:center"
                },
                attributes: {
                    "class": "table-cell",
                    style: "text-align:center"
                }
            }
        ],
        height: 430,
        scrollable: true,
        sortable: true,
        pageable: true,
        filterable: {
            extra: false,
            operators: {
                string: {
                    contains: "Contains",
                    startswith: "Starts with",
                    eq: "Is equal to",
                    neq: "Is not equal to"
                },
                number: {
                    eq: "Is equal to",
                    neq: "Is not equal to",
                    gte: "Greater Than",
                    lte: "Less Than"
                }
            }
        }
    });
</script>

这是返回给它的 JSON:

[
{"ActivityID":367,"Title":"Non Webinar Test For Calendar","ActivityType":"Other","TotalCredits":2,"Specialty":"[AB] [AE]"},
{"ActivityID":370,"Title":"Stage - Test SI Changes Part II","ActivityType":"Other","TotalCredits":2,"Specialty":"[NE]"},
{"ActivityID":374,"Title":"Webinar Test Event For Calendar","ActivityType":"Webinar","TotalCredits":2,"Specialty":"[FE] [NE] "},
{"ActivityID":401,"Title":"Module #1 Webinar: Learn Stuff","ActivityType":"Webinar","TotalCredits":2,"Specialty":"[AB] ",},
{"ActivityID":403,"Title":"Module #3 Webinar: Learn Even More Stuff","ActivityType":"Webinar","TotalCredits":2,"Specialty":"[AB] [AE]",}
]

我觉得我真的很接近,但我错过了最后一块。任何帮助将不胜感激,因为我在截止日期前。

4

6 回答 6

4

常见的问题是缺少架构属性!将它添加到网格的 - 数据源中,并检查它是否在您制作 json 时设置。

(当普通数组被序列化/to_json时,数据数组需要一个表示shema的属性)

这里有一个例子来说明:

js:示例网格初始化/数据源:

$("#grid").kendoGrid({ dataSource: { transport: { read: "/getdata/fromthisurl" }, schema: { data: "data" } } });

当您制作/输出您的 json 时,查看 shema 信息是否在编码结果中:

php:

 $somedata= get_my_data();

 header("Content-type: application/json");
 echo "{\"data\":" .json_encode($somedata). "}";

或者:

     $viewdata['data'] = get_my_data();

     header("Content-type: application/json");
     echo (json_encode($viewdata));

所以发送到网格的 json 看起来像:

{data:
      [
       {item}
       {item}
      ]
}

而不仅仅是:

[
  {item}
  {item}
]
于 2013-11-14T09:13:16.857 回答
1

您可以在某些调试工具中查看代码的哪一部分引发异常(我建议您使用 Chrome 的 DevTools(只需在 Chrome 中按 F12 键)。

我很确定问题是field网格的列数组中缺少属性,因此 Kendo 不知道数据源中的哪些数据要显示在网格的哪一列中。

columns: [
                {
                    field: "Title", // attr name in json data
                    title: "Title", // Your custom title for column (it may be anything you want)
                    headerAttributes: {
                        style: "text-align:center"
                    },
                    attributes: {
                        "class": "table-cell"
                    },
                    width: 600,
                    filterable: true
                },

不要忘记将请求类型从“POST”更改为“GET”。

于 2013-09-02T14:44:28.993 回答
1

代码看起来不错。我想知道您是否按如下方式更改数据源创建。将类型从POSTto更改为GET,看看它是否有效,

var remoteDataSource = new kendo.data.DataSource(
    {
        transport:
        {
            read: {
                type: "GET",
                dataType: "json",
                url: "/home/getopportunities/"
            }
        },
        pageSize: 4
    })
于 2013-08-14T08:15:25.497 回答
1

尝试这个,

  $(document).ready(function () {
var remoteDataSource = new kendo.data.DataSource(
    {
        transport:
        {
            read: {
                type: "POST",
                dataType: "json",
                url: "/home/getopportunities/"
            }
        },
        pageSize: 4
    });
});
于 2013-08-14T10:06:16.653 回答
0

这是不干净的,我偶然发现了它,但对我有用的是从控制器返回 Json(Json(dataList)) 而不是 Json(dataList)。

于 2015-04-13T10:56:50.123 回答
0

在检查从网格数据源 json 查询返回的 JSON 时,我发现字段名称正在被 JavaScript 化——C ActivityID#activityID中的内容已在线上......

于 2019-04-16T22:52:30.573 回答