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
1
vote
1 answer

Filter by Date in kendo ui grid shows an empty dialog for toggle calendar

I am a beginner with angular 5 and kendo ui for angular. I am following the example in https://www.telerik.com/kendo-angular-ui/components/grid/data-operations/filtering/ in order to understand the basics for filtering data in grid. The problem is…
Iachin
  • 81
  • 1
  • 7
1
vote
0 answers

How to remove cell spacing in Kendo Angular grid?

I'm trying to use one column of a grid as a canvas for grouping lines using borders. I want the borders between two rows to touch to give the effect of a continuous line. How do I remove cell spacing on the grid?
ZrSiO4
  • 116
  • 1
  • 11
1
vote
1 answer

why data don't display on kendo ui grid

I have cod as following var loadGridEmployee = function(listEmployee) { var grid = $("#grdemployees").data("kendoGrid"); if (!grid) { grid = $("#grdemployees").kendoGrid({ height: 600, columns: [ { field:…
1
vote
1 answer

How to use Kendo-ui grid for virtualization of remote data?

I'm using kendo-ui grid for AngularJs and want to activate virtualization of remote data functionality. For testing I have set pageSize: 5. Below is description of virtualization of remote data from telerik site: There are cases when you may need…
user6408649
  • 1,227
  • 3
  • 16
  • 40
1
vote
0 answers

How send page number in KendoUI Filter in server side

I have a kendo grid my paging is in the server side but the filter is in the client side. I have a problem with the paging in server side when I change the page number and I try to make a filter, the controller take in his parameter "paginator "…
1
vote
1 answer

Jasmine - How to write test case for add functionality in kendo inline grid jasmine?

I have kendo inline grid where in I need to Add a test case for Adding a new row with valid data and validate the count after adding the row in Jasmine.
1
vote
0 answers

Kendo ui grid server-side pagination not working?

I'm trying to implement server-side pagination with kendo-ui grid. This is my datasource configuration. "dataSource": { "serverPaging": true, "pageSize": 10, "schema":{ "data": "data", …
Supun Wijerathne
  • 11,964
  • 10
  • 61
  • 87
1
vote
1 answer

Resize columns in KendoUI Grid Angular 2

I am looking for way to manage resize columns by user in Angular 2 application. I saw in another versions of KendoUI Grid (for example in AngularJS) that this is possible but I can't find any solution for that in Angular 2 technology. Did they…
Celdur
  • 125
  • 2
  • 13
1
vote
1 answer

kendo grid showing [object Object] in Columns without pagination for virtualization

In one of my application, have seen browser gets hanging and crashing because of binding 500 000 records in the Kendo Ui-grid. The grid contains total 20 columns and all the data return from webapi via angular in kendo grid. it's working fine for 3…
Mohamed Sahir
  • 2,482
  • 8
  • 40
  • 71
1
vote
1 answer

KendoUI Grid With Angular2 : Configure sorting in column template

Is there any to configure column to allow sort or not with help of template column. Grid has already set [sortable]="true" I am able to configure in direct on column as below:
1
vote
1 answer

Error setting sessionScope variable in KendoUI grid to open document

My app uses KendoUI Grids for user views, but Xpages with custom controls for form pages (at least for now). The Xpage looks for a sessionScope variable to determine if it is a new doc (nothing in the scope Var) or and update (unid is in the…
Bryan Schmiedeler
  • 2,977
  • 6
  • 35
  • 74
1
vote
4 answers

How to access to data row in kendo ui grid column command template?

I want to access to data row in kendo ui grid column command template ,but not found solution to resolve this request.