我正在使用Kendo Treelist和该自动曲线功能。但是,抛出的错误是自动曲面不是一个函数。
任何人都可以告诉什么问题?
我的代码:
$('#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);
您正在使用Kendo 2015.1.408。
AutofitColumn()似乎在2015.2.805中添加了。
http://dojo.telerik.com/@stephen/oxuna