Questions tagged [kendo-ui-grid]

The Kendo UI Grid widget supports paging, sorting, grouping, and scrolling of data sets of any size.

Kendo Grid supports paging, sorting, grouping, and scrolling. It is large data set friendly. Invoke it by calling kendoGrid on a jQuery page element.

Grid is one of the more popular Kendo UI widgets offered by Telerik. Kendo UI is a library for creating touch-friendly HTML5 pages.


Related links


Related tags

197 questions
14
votes
2 answers

TypeError : r.getClientRects is not a function

I am trying to create a custom toolbar in KendoUI grid following this link:http://demos.telerik.com/kendo-ui/grid/toolbar-template but getting stuck with an error. This is what I am trying to do in my code:
Aakash Thakur
  • 3,837
  • 10
  • 33
  • 64
7
votes
1 answer

Inline Grid kendoComboBox get value in javascript

This is my function userNameEditor function userNameEditor(container, options) { $('') .appendTo(container) .kendoComboBox({ dataTextField: "UserName", dataValueField:…
5
votes
1 answer

How to group rows in Kendo UI Grid

I was able to do the following using kendo-ui-recat-wrapper to get a grouped Grid : let dataSource = { data: data, schema: { model: { id: 'id', expanded: true } }, group: [ { field: 'title', //…
Zied Hf
  • 491
  • 3
  • 10
  • 30
4
votes
1 answer

Icons not showing in my KendoUI for JQuery Grid

I have a KendoUI for JQuery grid, and as you can see in the screenshot below, all of the paging icons are not showing. I have added the necessary stylesheet references. And I have made sure that the stylesheets themselves and the .PNG files…
ShowJX1990
  • 77
  • 2
  • 11
4
votes
1 answer

Kendo angular grid column pass dataitem in ng-template

I am using Angular 5.2 with Kendo controls. Inside the grid i have a button with a click property. I want to pass the PID value into the showwindow function as a parameter. Here is the code sample:-
Karan
  • 3,265
  • 9
  • 54
  • 82
4
votes
0 answers

kendo grid Uncaught TypeError: Cannot read property 'slice' of undefined

Fairly new to it and trying to use paging with kendo datagrid (2.2015) Had it working without paging but paging requires the total record count be returned in the data so I changed the json result from the web service to look like this: { …
kpg
  • 589
  • 6
  • 28
4
votes
2 answers

How to get all the values of particular column of kendo grid?

i have kendo grid with 4 columns in it [mac,level,timestamp,message]. i need to store all the values under timestamp column in an array.I tried but couldn't find any way to traverse in a particular column. Any idea how to do this using java script?
shubham gupta
  • 321
  • 3
  • 9
  • 23
3
votes
2 answers

Is it possible to set row numbers in the kendo angular grid?

I'm using the kendo angular grid to show my data. but I need to have a RowNumber in every row. I searched but did not find any solution to do that. Is it possible to set the row number? Kendo Angular Grid (documentation) This is my code…
user13033942
3
votes
1 answer

No provider for InjectionToken Localization key prefix

I'm not new to angular and normally I know how to handle the "No provider for XYZ" Errors but in this case I don't know what angular means with "Localization key prefix" My component is a basic wrapper for a kendo-pager
Arthur Welsch
  • 269
  • 2
  • 15
3
votes
0 answers

Angular 6 Kendo Grid Field names with special characters

I am creating a dynamic grid in Kendo UI for Angular, the columns are created from database columns, that are unfortunately in Swedish, that has the special characters å, ä and ö for example, "ändradAv" (en: changedBy) I am getting the error: Grid…
h3li0s
  • 613
  • 9
  • 25
3
votes
1 answer

Set kendo-grid-column class based on dataItem

In the kendo grid component for angular, how do I achieve something akin to the following? 30}> I know I can put a template inside the kendo-grid-column and…
noah
  • 81
  • 3
3
votes
0 answers

Kendo UI Grid Grouping and Paging with big data

I have around 200.000 data and paging is set to 500. The grouping function groups only data of paged items and not of all which is in the database. There are several posts regarding this matter, but did not find a proper solution /…
supersonic
  • 43
  • 5
3
votes
0 answers

Column show/hide via Toolbar of Angular Kendo UI Grid

Our web application uses Telerik Kendo UI with many Angular Kendo UI Grids. Each Grid has several columns. Some of our users don't prefer seeing all the columns so we want to implement column show/hide feature via checkbox for them. As per the Kendo…
Code.me
  • 281
  • 3
  • 13
3
votes
1 answer

can't scroll to the end of data kendo-ui-grid

I want to use kendo-ui-grid server paging with virtual scrolling and encountered a problem I don't know how to solve It's shown in here: http://dojo.telerik.com/uyEje Try scrolling to row number 2M. Anybody has any idea?
minsky
  • 165
  • 1
  • 10
3
votes
0 answers

Kendo UI Grid DataSource Transport reads only once

I am trying to use Kendo UI's Grid with remote data virtualization to connect to a datasource that contains anywhere from 100K to 10M records. I know that most of my configuration is working correctly as datasource.transport.read() fires my custom…
spink
  • 31
  • 1
1
2 3
13 14