Kendo UI listview无法正常工作

时间:2016-03-20 22:36:29

标签: kendo-ui kendo-grid kendo-asp.net-mvc kendo-listview

我们正在使用.Net MVC和Kendo UI作为Javascript的一部分

以下是我们面临的描述和错误:

有一个id = detailId.trim()的div标签(在加载网页时动态创建detailID值)

以下调用未使用URL路由到Contoller(EmployeeController):域+" Employee / GetMediaMetaData"

代码:

$("#detailListView_" + detailId.trim()).
kendoListView({
       dataSource: new kendo.data.DataSource({
                transport: {
                    read: {

                    url: domain + "Employee/GetMediaMetaData",
                    data: { id: '' + detailId.trim().toString() },
                    dataType: "json",

                }


            },

            parameterMap: function (options) {
                    return kendo.stringify(options);
                }

      }),

        template: kendo.template($("#detailMediaTemplate").html()),
        selectable: true,
        change: onChange
    });`

0 个答案:

没有答案