Kendo UI for Angular is a commercial UI toolkit for Angular 4+
Questions tagged [kendo-ui-angular2]
917 questions
12
votes
1 answer
Kendo UI for Angular 2 Grid dataBound event
Is there a way to capture the dataBound event of the grid similar to the one we had in the jQuery version of Kendo UI. I need to perform an action after the data is loaded in the grid.
There is a dataStateChange event, but this event does not…

dpdragnev
- 2,011
- 2
- 28
- 55
11
votes
2 answers
How can you dynamically set disabled for Angular reactive form?
I have an Angular 4.10 application that is using the Kendo Angular Grid control. I am using External Editing. I have created the FormGroup as below:
this.editForm = new FormGroup({
'Id': new FormControl({ value: 0, disabled: true…

LanceM
- 1,888
- 4
- 23
- 41
10
votes
2 answers
Multiple labels per item on Kendo chart
I'm trying to get multiple label per item on Kendo Column chart
Desired layout looks like this
I was able to get only this layout
import { Component } from '@angular/core';
import { groupBy, GroupResult } from '@progress/kendo-data-query';
import {…

Vadim Ovchinnikov
- 13,327
- 5
- 62
- 90
8
votes
3 answers
Kendo UI Angular 2 Grid Excel Export
I'm trying to add excel export functionality to Kendo UI angular 2 grid, but getting an error while the angular 2 app loads:
Can't bind to 'toolbar' since it isn't a known property of 'kendo-grid'.
Here is the code snippet I'm using:

Christopher Vinod
- 81
- 1
- 2
8
votes
2 answers
Kendo Angular 2 Grid Height
I want my grid to have a dynamic height. Before with angular 1 and kendo i would do like this.
With the following CSS:
#grid {
height: calc(100% - 1em);
}
But with Kendo grid…

Nbergk
- 109
- 1
- 7
7
votes
1 answer
Bind Click Event to Kendo ToolBar
I am trying to bind click event to buttons I have in kendo Tool bar. I am creating button using template.
I am using Kendo Jquery with angular.
Any help will be highly appreciated.
So far I have tried this using Kendo Jquery Documentation:

Amit
- 1,460
- 1
- 14
- 39
7
votes
0 answers
Importing @types/kendo-ui in correct way without @progress/kendo-ui installed
I want to import the @types/kendo-ui in my project. But even WebStorm not provides me an automatic import function.
Kendo-UI library is already load via so that I don't need to import the whole script files via import…

Patrick
- 144
- 7
7
votes
3 answers
Trigger event when row is selected in a Kendo UI Grid (Angular 2)
In Kendo UI (beta) for Angular 2, how does one trigger an event when a specific row is selected? There are no directives or components for the rows themselves; therefore, a (click)="triggeredFunction()" can't work if there is no row element.
Here…

ed-tester
- 1,596
- 4
- 17
- 24
7
votes
6 answers
Kendo Angular 2 Grid Filter not available
I am using the Kendo Grid with Angular 2 using this http://www.telerik.com/kendo-angular-ui/components/grid/data-binding/ tutorial but I didn't find filtering in the grid. How can I filter my Kendo Grid with Angular 2?

Prasanjeet Debnath
- 272
- 3
- 13
6
votes
3 answers
Error ''Identifier 'territoryFromName' has already been declared" on AOT build with Angular & Kendo UI
Very recently, and without any version change to our package, our AOT build failed with this error message :
ERROR in chunk vendor [initial] [name].bundle.js Identifier
'territoryFromName' has already been declared (13:9)
}
function…

Pac0
- 21,465
- 8
- 65
- 74
6
votes
1 answer
Kendo Grid for Angular Row Reordering - Angular 4/5 - HTML5 Drag and Drop API
I am trying to implement a Kendo-Grid with Row Reordering feature as advertised here.
When the Grid is dealing with data fetched via an Ajax call, the reordering of rows (i.e. Dragging and dropping a row) does not work until the view changes (for…

rgantla
- 1,926
- 10
- 16
6
votes
1 answer
Kendo Grid for Angular 2 Excel export date formatting
When we try to export the grid data from Kendo UI Grid for Angular, One of the grid columns (Date column) doesn't format the actual date value.
Here is my code.

Dave Hudson
- 61
- 1
- 4
6
votes
3 answers
Getting Can't bind to 'routerLink' since it isn't a known property of 'a'. error in spite of referencing router moudule
I am implementing basic routing in my angular 4 application and getting the following error when loading the application on the browser. I have defined the routes in approuting.module as also referenced the router module in Ngmodule as well…

Tom
- 8,175
- 41
- 136
- 267
6
votes
2 answers
Angular reusable template
Is it possible to write reusable ng-template? A lot of my components use exactly the same ng-template.
For example:

Makla
- 9,899
- 16
- 72
- 142
6
votes
2 answers
Kendo Angular 2 grid with checkbox column
I'm trying to implement a column of checkboxs in my Kendo Angular 2 grid.
I am following the example in the documentation (without…

amp
- 11,754
- 18
- 77
- 133