Reputation: 30995
I have an Angular hybrid app that I'm migrating from AngularJS 1.64 to Angular 5. We are currently using Angular Material 1 for the AngularJS side and Angular Material 2, which has a different syntax, for the Angular 5 side.
The company I'm working with expressed their interest in moving to Kendo UI. My concern is that if the syntax Kendo UI uses is dependent upon the Angular version similar to how Angular Material is, then we'd end up making a bunch of "throw-away" HTML in the AngularJS templates that would have to be rewritten once it's upgraded to Angular 5.
So, is the Kendo UI HTML syntax vastly different between AngularJS 1.x and Angular 5? I see demos on their website for AngularJS, but not for Angular 5.
Upvotes: 0
Views: 133
Reputation: 23927
Originally Kendo UI offered Kendo UI (for jQuery) and everything else was just wrappers. Kendo UI for Angular seems to be a stand alone product, without any dependencies on jquery.
(In case for asp.net mvc, the kendo ui for mvc is just a wrapper around the base Kendo UI to offer developers the possibility to use the fluent syntax and C#.)
So to answer your question: If you plan to use Angular 2+, use the Kendo UI for Angular. It is specifically built to work without jQuery and with Typescript.
Upvotes: 2