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

7482 questions
27
votes
6 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
  • 848
  • 1
  • 11
  • 26
24
votes
3 answers

Kendo UI Grid post rendered or post databound event?

Is there a way to trigger an event after grid has been reloaded via ajax? i see the RequestEnd event. but that seems to happen when the request returned, but before the grid has been refreshed. i also see DataBound event. but that happens even…
Sonic Soul
  • 23,855
  • 37
  • 130
  • 196
24
votes
3 answers

How to check null values using kendo template

Hi I've a kendo grid like below and I wanted to check null value for column and based on condition I want to display some default number to the column Here is my sample code. $("#eCount").kendoGrid({ dataSource: { data:…
jestges
  • 3,686
  • 24
  • 59
  • 95
24
votes
15 answers

KendoUI grid edit popup, how to hide field

Is there a way to hide a field in edit popup that should still be visible in the grid itself? I have tried setting it to hidden:true, but kendo seems to ignore it. When editable is set to false, it hides the textbox but field label is still shown.…
I'm busy coding
  • 1,648
  • 4
  • 13
  • 13
23
votes
6 answers

Kendo-UI grid Set Value in grid with Javascript

I'm just wondering how you go about changing a value of a row in a grid in JavaScript so that it is marked as 'dirty' in the grid and the underlying datasource. e.g. I have a list of Contact/Customer. They have 3 fields…
Matt
  • 3,305
  • 11
  • 54
  • 98
22
votes
3 answers

Kendo Grid columns Hide/Show, Enable/Disable

How to hide/show and Enable/Disable columns in kendo grid on condition or event. I could only find option of enable/disable kendogrid column in .model Any help is appreciated. Thank you in advance!
Apurv Deshmukh
  • 223
  • 1
  • 2
  • 4
22
votes
3 answers

Get record count in Kendo Grid after dataSource.read

I want to be able to push the record count from my Kendo grid after read (refresh). Here is my Kendo Grid: @(Html.Kendo().Grid(Model) .Name("SearchWindowGrid") .Columns(columns => { columns.Bound(p =>…
gardarvalur
  • 1,565
  • 9
  • 39
  • 65
22
votes
2 answers

Change kendo grid Datasource use JS

I have Kendo grid and I set data source use this .DataSource(dataSource => dataSource .Ajax() .PageSize(20) .Read(read => read.Action("GetWorker",…
Std_Net
  • 1,076
  • 3
  • 12
  • 25
21
votes
5 answers

Uncaught TypeError : cannot read property 'replace' of undefined In Grid

I'm new in using Kendo Grid and Kendo UI . My question is how can i resolve this Error Uncaught TypeError: Cannot read property 'replace' of undefined This is my Code on my KendoGrid $("#Grid").kendoGrid({ scrollable: false, …
Ren Tao
  • 397
  • 2
  • 10
  • 25
21
votes
8 answers

How to wrap Kendo Grid Column

Kendo Grid columns is given as below. After doing zoom screen column is getting hide, I want to do wrap column. Can we do it by giving some propery on gridColumns. Please tell me. I am not able to find it. Here 'Your Occupation Details' is getting…
user1078749
  • 263
  • 2
  • 3
  • 7
21
votes
3 answers

Adding bindeable checkbox column to grid

Have this column in a Kendo grid that currently display a MySQL Boolean value so we have either 1 or 0. Made this demo to play on... This in an autosync and inline:true grid. I would like this column to be of type "Checkbox" but, for some weird…
Tuthmosis
  • 1,131
  • 3
  • 15
  • 27
21
votes
6 answers

How do I check if a Kendo Grid has had changes made to it?

How can I check if a Kendo Grid has changes? I heard that there is a dirty property, but I cant find it.
muthucsm
  • 313
  • 1
  • 2
  • 4
20
votes
2 answers

How to unselect the grid record in kendoui

I am selecting the listview record on databound event. I have written the following code in databound var grid = $("#grid").data("kendoGrid"); grid.select(grid.tbody.find(">tr:first")); Now i want to deselect the grid dynamically. How…
Pa1
  • 630
  • 4
  • 11
  • 21
19
votes
3 answers

How can I refresh a grid data source using angular Kendo UI

I am combining Telerik Kendo grid with Angular using the Angular Kendo UI project. I have the following markup:
and the following code in my controller: …
David Kethel
  • 2,440
  • 9
  • 29
  • 49
19
votes
4 answers

How to get row index and cell index of row click kendo grid

I have added onchange event for kendo-ui grid. In that I am trying to get the ID value for that particular row. I have added an image column as first column in the grid. What I want is when the image is clicked, I want to open a image url. So,…
user2117983
  • 359
  • 4
  • 11
  • 24