0

我们有一个混合应用程序(AngularJS 1.6 和 Angular 5),它使用 Kendo UI for AngularJS。应用程序的 AngularJS 端的架构完全基于组件。我们正在慢慢地将每个 AngularJS 组件迁移到 Angular,并且有一个组件正在使用 Kendo UI Validator ( https://demos.telerik.com/kendo-ui/validator/angular )

我曾尝试使用角度/升级/静态方法,但并没有真正起作用

@Directive({selector: '[kendo-validator]'})
export class KendoValidator extends UpgradeComponent {

  constructor(elementRef: ElementRef, injector: Injector) {
    super('kendoValidator', elementRef, injector);
  }
}

有谁知道是否有任何方法可以在 Angular 5 组件中使用 Kendo UI AngularJS 组件。出于多种原因(我们可以控制),我们还不能升级到 Kendo Angular UI -:(

4

0 回答 0