我正在按照Telerik.com上的说明将Editor组件包含在Angular应用程序中。这是一个相当复杂的应用程序,使用ASP.NET MVC,Angular,Bootstrap,jQuery等。我只想添加Telerik组件,并且所有组件都准备就绪:
_Layout.cshtml
<script src="//code.jquery.com/jquery-3.1.1.min.js"></script>
vendor.ts
import '@progress/kendo-ui';
app.view.html
<textarea #editor rows="10" cols="30" style="height:440px" aria-label="editor"></textarea>
app.component.ts
declare var kendo: any;
@Component({...})
export class MyApp {
@ViewChild('editor') editorEl: ElementRef;
ngAfterViewInit() {
kendo.jQuery(this.editorEl.nativeElement).kendoEditor({
resizable: {
content: true,
toolbar: true
}
});
}
}
运行应用程序时,在控制台中出现以下错误:“ TypeError:e(...)。appendTo(...)。kendoPopup不是函数”
以前有没有人见过这个错误,可以给我一些纠正的指导?