There are several ways to accomplish this. I’ve got a grid with 2 columns defined: this.gridOptions = { dataSource: this.mydata, columns: [ { field: “office_group_id”, title: “ID” }, { field: “group_name”, title: “Group Name” } ] } } With Kendo Grids, you can get the data from a grid like this: with the javascript event […]
Writing Angular Controllers in Typescript for Kendo Grids – Dealing with Data
Telerik offers a fantastic library called Kendo UI. They’ve converted all of the objects into Angular Directives. They’re great, except there are some issues that really arise from the actual platform. Angular is very data-centric. You don’t pick an object and then change it, as you do in jQuery, you define the parameters of the object as variables and then let the data do the work naturally.
Using Kendo ObservableArray’s lets us avoid unnecessary constructs that just don’t ever seem to work out for us in AngularJs.
Grid Data with Angular’s Kendo Directives
Kendo UI has some great tools, but Angular is simply much more powerful when dealing with web-based data-management systems. To leverage Kendo, Angular has created Kendo-Directives. Almost any Kendo object can be created and managed from Angular, thereby removing the dependancy on jQuery and enabling Angular to keep those objects in scope.
- 1
- 2
- 3
- 4
- Next Page »