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
19
votes
1 answer

KendoUI Grid Decimal number column

I have a column for weight (in Kg). When the user clicks on it I need to enable them to be able to put in decimal number with 3 places. The problem I have is at the moment it only allows them to put it in to 2 places, but shows as 3 places. You can…
imperium2335
  • 23,402
  • 38
  • 111
  • 190
18
votes
5 answers

kendo grid delete command not working

i have developed a web application using kendo ui tools and theres a kendo grid with batch edit mode.. but when i press the delete button for any record in kendo grid it will erase from the list in grid but actually not in the data source.when i…
sanzy
  • 805
  • 9
  • 18
  • 28
18
votes
6 answers

How to change page size dynamically in Kendo UI Grid

I am having a Kendo UI grid showing more than 1000 data. I also have a dropdown list for different page size - 15, 25, 50, 100. On selection of a page size, how can we change the page size of Kendo UI grid?
Ashmah
  • 842
  • 2
  • 8
  • 17
17
votes
3 answers

How to format date in Angular Kendo Grid

I working on Angular Kendo Grid and I am getting server data in format 1900-01-01T00:00:00 But I want it to display in standard format, not sure how to do it. I have applied format='{0:MM/dd/yyyy h:mm a}' in grid column but no effect. What ever…
K.Z
  • 5,201
  • 25
  • 104
  • 240
17
votes
2 answers

Format Kendo Grid to display dollars sign and allow up to two decimal?

I have a kendo Grid that I create like this: function drawInvoiceTable() { invoiceTable = $('#invoiceGrid').kendoGrid({ sortable: true, pageable: true, dataSource: { data: getData(), pageSize: 10, …
Data Crusader
  • 425
  • 1
  • 4
  • 14
17
votes
4 answers

Kendo Grid cancel edit event

I'm using the edit event on a Kendo grid to show a couple of hidden columns. I'll then hide them again on the save event. Problem I have is that there doesn't appear to be an event for cancelling edit mode, so the column get screwed up if the user…
Mat
  • 1,668
  • 4
  • 23
  • 40
16
votes
10 answers

Kendo UI reference not working in Razor view

I am trying to create a Telerik Grid view but when I go to reference kendo it does not recognize it. Visual Studio is giving me an error when I try to reference kendo. This is the code @(Html.Kendo().Grid) and below is the…
Brian
  • 427
  • 2
  • 5
  • 16
16
votes
7 answers

Pager error in Kendo Grid(Nan-Nan of 1 items)

I am trying to create a Kendo grid with a list of student details. On click of the add button, the pager shows "Nan-Nan of 1 items". @(Html.Kendo().Grid() .Name("StudentDetailsGrid") .Pageable() …
Rohini
  • 165
  • 1
  • 1
  • 6
16
votes
2 answers

Formatted HTML data in Kendo grid column

Hi I have a Kendo Grid created in jquery with following code: Kendo Grid: $('#divFolderNotes').kendoGrid({ dataSource: data batch: true, columns: [ { field: "Text", title: "Note Text" }, { field:…
user3040830
16
votes
1 answer

How to refresh the Kendo UI grid

I am trying to refresh a Kendo UI grid but have not yet been successful. Would anybody please advise what I missed or what I did wrong? I have the following code: .cshtml: $('#btnRefresh').click(function (e){ $.ajax({ …
Spidey
  • 1,583
  • 5
  • 23
  • 30
16
votes
4 answers

Kendogrid destroy() and recreate the table on a new datasource, why do the old table columns still exist?

When invoking destroy() in KendoUI Grid and then recreate the table on a new DataSource: why do the old table columns still exist? The only element here that stays the say is the element. How do I tell the grid to read the new datasource columns (it…
afinegan
  • 175
  • 1
  • 1
  • 5
16
votes
4 answers

Formatting kendo numeric text box

I have a kendo numeric box in grid. Only numbers are allowed in it. No decimal places and no comma separators. I tried in different ways but did not succeeded. Any idea ... Please help me... In data source fields i given like this seq_no : {type:…
Kiren S
  • 3,037
  • 7
  • 41
  • 69
15
votes
3 answers

How to hide the grid header kendo ui?

I'm working with hierarchy grid kendo ui. I want to hide grid header. Currently, I use the code as below, however, only hide text of header. // kendo ui grid .TableHtmlAttributes(new { @class = "GridNoHeader" }) // css .GridNoHeader…
PeaceInMind
  • 1,147
  • 3
  • 11
  • 32
15
votes
4 answers

Kendo UI Bootstrap theme not working well with Bootstrap 3.1.0

I'm just in the process of converting a site based on Bootstrap 2.3 to 3.1 and I've got lots of issues with Kendo's Bootstrap theme. I tend to use use Bootstrap form-groups within custom Grid popup editors, but they don't behave with Kendo's…
Mat
  • 1,668
  • 4
  • 23
  • 40
15
votes
12 answers

How to change columns set of kendo grid dynamically

I am trying to change the columns collection of my Kendo grid in the below way. var grid = $("#grid").data("kendoGrid"); $http.get('/api/GetGridColumns') .success(function (data) { grid.columns = data; }) …
user2503696
  • 151
  • 1
  • 1
  • 3