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

Knockout-Kendo.js Grid UI:datepicker filter

I am using the Knockout-Kendo.js integration library I am trying to get the datepicker filter working. However, whenever I add filterable: {ui: "datetimepicker" } to my configuration nothing is shown on the page and no script errors. My kendoGrid…
David
  • 3,047
  • 4
  • 45
  • 79
0
votes
1 answer

Kendo UI - Kendo Grid Edit Popup option for add and inline for edit

I have a kendo grid and the Edit event opens a popup using the below piece of code. editable: { mode: "popup", template: kendo.template($("#popup_editor").html()), update: true, destroy: true, …
0
votes
0 answers

Kendo UI Virtualization grid with Knockout.js

I am fiddling with Kendo UI and Knockout and I can't seem to set grid to work in virtualization mode (single page, load 10 rows, and load more as the user scrolls). Was anyone able to do that or is this impossible with local data? EDIT: What I have…
azza idz
  • 623
  • 3
  • 13
  • 27
0
votes
1 answer

Dynamic Kendo UI Grid

I am facing an issue with the dynamically created kendo UI grid. When I specify the the columns array with title and field properties and render the grid, the grid columns do not show the specified title instead they show the field name. I do not…
Nilesh
  • 2,583
  • 5
  • 21
  • 34
0
votes
1 answer

Handling Java Servlet Exception on Kendo UI

I am trying to show some date in my Kendo UI grid. Data cames from a java servlet. I set status code to 500 when error occuured. I can see the error on console but cannot handle in js. I want to show some message to user like 'Update fail because…
Bahadır Yılmaz
  • 368
  • 1
  • 4
  • 23
0
votes
2 answers

Kendo UI Grid: Hide column when initialize from HTML table?

$(document).ready(function() { $("#grid").kendoGrid({ height: 550, sortable: true }); });
Ed Sinek
  • 4,829
  • 10
  • 53
  • 81
0
votes
1 answer

Kendo UI MVC Grid Date not getting displayed

While debugging I can see date fields have date value in retuned JSON but dates are not getting displayed in the grid. Please suggest me a fix. @(Html.Kendo().Grid() .Name("grid") .HtmlAttributes(new { style = " max-width:…
CuriousBenjamin
  • 709
  • 1
  • 9
  • 26
0
votes
1 answer

Make read-only rows on KendoUI TreeList

I'm making a KendoUI TreeList table and I need some rows to be read-only. As the option does not exist by default, I'm trying to do this following this tutorial Here which works great on a KendoGrid, but not on my treelist. I'm defining a template…
Bjo
  • 3
  • 1
0
votes
1 answer

How to sort alphabetically kendotabStrip after append

This is my code var tabStrip = $("#createPackageRoomType ul").kendoTabStrip().data("kendoTabStrip"); tabStrip.append({ text: $(this).attr('label'), content: $('#createPackageRoomTaskList').val()…
0
votes
0 answers

KendUI Grid Foreign Key Field blank when Guid datatype used

I have implemented a KendoUI Grid. Here is the Grid implementation in the View. @(Html.Kendo().Grid() .Name("ExampleGrid") .Columns(columns => { columns.Bound(p => p.Name); columns.Bound(p => p.Label); …
Shane van Wyk
  • 1,870
  • 1
  • 26
  • 62
0
votes
1 answer

Use of Kendo UI Grid & Window Very high CPU Usage

I have a simple app that is a set of Kendo UI windows containing datagrids. As soon as its running, its a huge strain on the system and visual grinds to a halt. Its Chrome that is having the issues regardless of the project running or not, if those…
Dale Fraser
  • 4,623
  • 7
  • 39
  • 76
-1
votes
1 answer

ng.profiler.timeChangeDetection() not working

I am trying to debug and profile an angular app for performance and try to get the following command working ng.profiler.timeChangeDetection() While trying to run the above command in console I am getting following error VM999:1 Uncaught TypeError:…
hellowahab
  • 2,445
  • 4
  • 21
  • 34
-1
votes
2 answers

Hide an element conditionally by its value

I have a kendo grid containing following columns. 1.Name 2.Age 3.Type{values:public,private} I need to hide a column in specific row. In my problem, i want to hide age cell if Type value is private.
-1
votes
1 answer

In Kendo Grid - Edit option how to hide/show the save button If there are no changes or some changes then show

Could you please let me know how to Hide/Show the Save button based on whether the user made some changes to Edit textboxes, like If there are no changes are made to edit textbox, then we should HIDE the SAVE button. If the user makes any changes to…
Kumas
  • 1
  • 7
-1
votes
1 answer

Filterable row is not working in Asp.net but it is working in MVC

In the below code I am getting columnheaders but I am not getting auto text boxes to filter data below on every column, this attribute was called in kendo grid filterable:{ mode: "row"}, but I have added this attribute in the below result…
1 2 3
13
14