Questions tagged [kendo-grid]

The Kendo Grid is a Kendo widget that displays tabular data and offers rich support interacting with data, including paging, sorting, grouping, and selection. Grid is a powerful widget with many configuration options. It can be bound to local JSON data or to remote data using the Kendo DataSource component.

The Kendo Grid is a Kendo widget that displays tabular data and offers rich support interacting with data, including paging, sorting, grouping, and selection. Kendo Grid is a powerful widget with many configuration options. It can be bound to local JSON data or to remote data using the Kendo DataSource component.

Resources

Related tags

7253 questions
179
votes
24 answers

Reloading/refreshing Kendo Grid

How to reload or refresh a Kendo Grid using Javascript? It is often required to reload or refresh a grid after sometime or after a user action.
Oxon
  • 4,451
  • 7
  • 35
  • 54
69
votes
7 answers

Kendo grid date column not formatting

I have a KendoGrid like below and when I run the application, I'm not getting the expected format for date column. $("#empGrid").kendoGrid({ dataSource: { data: empModel.Value, pageSize: 10 }, columns: [ { …
jestges
  • 3,396
  • 24
  • 54
  • 88
44
votes
12 answers

Display a message within the Kendo grid when it's empty

I'm trying to display a friendly message (like "No records found, try again later") within the grid content, when there are no records in the database. From what I've seen in the docs, there is currently no way of doing this for the grid content.…
Zubzob
  • 2,442
  • 4
  • 24
  • 41
42
votes
2 answers

How Can I Hide Kendo UI Grid Columns using JavaScript, React, Angular, Vue or ASP.NET MVC

I'm working on a HTML5 and JavaScript website. Is it possible to have a hidden column in Kendo UI Grid and access the value using JQuery?
user1076698
  • 681
  • 3
  • 9
  • 20
41
votes
4 answers

Refresh a single Kendo grid row

Is there a way to refresh a single Kendo grid row without refreshing the whole datasource or using jQuery to set the value for each cell?
rafoo
  • 1,045
  • 1
  • 11
  • 13
36
votes
8 answers

Format DateTime in Kendo UI Grid using asp.net MVC Wrapper

I want to build a Kendo UI Grid with format date dd//MM/yyyy. However, all questions that I found about this, it were resolved with code Format("{0:d}");. So, I have tried like a code below: GridBoundColumnBuilder builder =…
35
votes
13 answers

How can I refresh the grid after I edit the Kendo UI grid?

I edit the grid using editable: "popup" as shown on Telerik's demo page. After I edit the grid, I want the grid to refresh. Does the grid have any event that is called after I edit the grid? I tried to use the databound event. In this event I make…
flower
  • 2,013
  • 3
  • 22
  • 39
33
votes
5 answers

Kendo: Handling Errors in Ajax Data Requests

Using Kendo UI in MVC4 I have a Grid that makes Ajax calls for data back into the Controller: public ActionResult SearchUser_Read([DataSourceRequest]DataSourceRequest request) { var data = CreateAnExcaptionHere(); return…
Ian Vink
  • 60,720
  • 99
  • 311
  • 535
32
votes
2 answers

How to change Kendo UI grid page index programmatically?

I have a kendo ui grid. Let's say that the JS variable pointing to the grid is called grid. How can I go to page 3 programmatically? Thanks.
Lajos Arpad
  • 45,912
  • 26
  • 82
  • 148
31
votes
5 answers

How to get the displayed data of KendoGrid in json format?

I have a kendoGrid and i would like to get the JSON out of it after filtering and sorting how do I achieve this? something like the following, var grid = $("#grid").data("kendoGrid"); alert(grid.dataSource.data.json); // I could dig through…
user677607
30
votes
1 answer

Error The length of the string exceeds the value set on the maxJsonLength property

I am currently have a grid with PDF attachment. Each PDF can have file size up to 1MB. The problem is I am getting the value "Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the…
Spidey
  • 1,543
  • 5
  • 23
  • 30
29
votes
2 answers

Kendo UI Grid local data source column sort by default

Trying to set a default sort column on my kendo UI grid from a local datasource. I've read all over that I should be putting: sort: { field: "price", dir: "desc" } onto the data source. I've tried this and it still isn't working (see bottom of…
jonnow
  • 698
  • 1
  • 8
  • 14
28
votes
3 answers

ag-grid vs slick-grid vs angular-grid which is better?

Recently we thought to change our current grid tool. Currently we're using kendo-ui for grid and all. After searching we came with 3 results. But, still we're not sure which is better and why in future run. While using kendo we missed having…
Sumit Khanduri
  • 3,009
  • 7
  • 23
  • 38
26
votes
5 answers

Make cell readonly in Kendo Grid if condition is met

Let's say I have a data like this: [ {ID: 1, SomeForeignKeyID: 4, IsFkEnabled: true}, {ID: 2, SomeForeignKeyID: 9, IsFkEnabled: false} ] Kendo Grid is using this data: columns.Bound(m => m.ID); columns.ForeignKey(p => p.SomeForeignKeyID,…
Andrzej
  • 797
  • 1
  • 9
  • 24
26
votes
4 answers

How to remove all rows from a Kendo grid

I am using Kendo grid. I want to remove all rows from Kendo grid using JavaScript. I removed them using a for loop but I want to find the best way to remove all rows.
Rikin Patel
  • 7,983
  • 7
  • 66
  • 73
1
2 3
99 100