Questions tagged [kendo-ui]

Kendo UI is a framework to build HTML UI. It delivers everything needed for client-side, jQuery-powered development in one integrated, compact package, complete with AngularJS integration.

Kendo UI is a framework to build HTML UI. Following the latest HTML5, CSS3, and JavaScript standards, it delivers everything needed for client-side, jQuery-powered development in one integrated, compact package, complete with AngularJS integration and Bootstrap support. It is created by Telerik. It is comprised of an open source Core, and a commercial set of enterprise grade features :

Kendo UI Core

Contains 40 web widgets, all of the mobile widgets as well as the mobile application framework, and the core functionality of Kendo UI framework, including the DataSource component, templates, drag-and-drop, and themeable widgets with integrated animations as well as AngularJS directives.

Kendo UI Professional

Includes all of Kendo UI Core, as well as professional grade widgets such as the Grid, Scheduler, PivotGrid, Editor, TreeView and more It also includes a complete data visualization package containing charts, graphs, gauges, maps, diagramming tools and a drawing API


Resources:

  • Kendo UI Docs: API reference, FAQ and tutorials
  • Kendo Dojo: An interactive, in-browser tutorial to help quickly learn Kendo UI
  • Kendo Forums: The official Kendo UI forums
  • Kendo UI Demos: Demonstrations and code examples of the major features of Kendo UI

Component-specific tags


Other related tags

16785 questions
24
votes
2 answers

how do you loop through all rows in kendoUI grid with filter

here's my code. it works, if you want to loop through all the rows. now, QA told me I have to make it to support filter. so, when user use filter, only a subset of the rows will show on the grid. I need to only loop through only those rows. …
qinking126
  • 11,385
  • 25
  • 74
  • 124
23
votes
5 answers

A binary operator with incompatible types was detected. Found operand types 'Edm.Guid' and 'Edm.String' for operator kind 'Equal'

I am getting the following exception when calling OData from my Kendo ListView: "A binary operator with incompatible types was detected. Found operand types 'Edm.Guid' and 'Edm.String' for operator kind 'Equal'" DECODED…
Prisoner ZERO
  • 13,848
  • 21
  • 92
  • 137
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
21
votes
6 answers

Kendo DatePicker fails validation for custom date format

I'm using Kendo DatePicker to edit a Date field being displayed in a Kendo Grid in my ASP.NET MVC 4 project. In order to have the DatePicker being used for the Date field use custom date format string, I updated the Date.cshtml file under the…
Amry
  • 4,791
  • 2
  • 23
  • 24
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
20
votes
4 answers

Kendo template conditional formatting

Disclaimer: This was originally posted to the KendoUI forums, but has received no answers. I'm trying to use conditional formatting of elements in my ListView's template. This partial view uses a shared DataSource to allow navigation via Pager, a…
Jesse Smith
  • 963
  • 1
  • 8
  • 21
19
votes
1 answer

Select programmatically Kendo grid row

I found posts with similar titles but I still cannot resolve my issue. Definitely I am doing something wrong. In Kendo grid configuration have some function which take context (grid) and read selected row: change: function (e) { …
kat1330
  • 5,134
  • 7
  • 38
  • 61
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