未捕获的TypeError:treelist.autoFitCloumn不是kendo treelist中的函数

时间:2016-06-23 09:53:05

标签: jquery kendo-ui kendo-treelist

我正在使用Kendo treelist和autofitColumn函数。但是,抛出错误,Autofitcolumn不是一个功能。

谁能说出来,问题是什么?

我的代码:

$('#treelist').kendoTreeList({
    dataSource: dataSource,
    editable: false,
    columns: [
        { field: "FileType", title: "Files" },
        { field: "DestDrive", title: "Drives", template: "<select id= \"drivedropdown\" class=\"form-control\"  # for (var i = -1, len=DestDrive.length;i<len ; i++) {# <option> #=DestDrive[i]# </option> #}# /> " },
        { field: "DestPath", title: "Path", template: "<input id=\"pathtextbox\" class=\"form-control input-sm \" />" }
    ],
    scrollable: true,
    //resizable: true,
    messages: {
        loading: "Fetching DB details...",
    }
})var treeList = $("#treeList").data("kendoTreeList");  treeList.autoFitColumn(0);

1 个答案:

答案 0 :(得分:0)

您正在使用Kendo 2015.1.408。

autoFitColumn()似乎已在2015.2.805中添加。

http://dojo.telerik.com/@Stephen/OxUNa