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
185
votes
29 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,901
  • 8
  • 40
  • 54
72
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,686
  • 24
  • 59
  • 95
54
votes
5 answers

Change selected value of kendo ui dropdownlist

I have a kendo ui dropdownlist in my view: $("#Instrument").kendoDropDownList({ dataTextField: "symbol", dataValueField: "symbol", dataSource: data, index: 0 }); How can I change the selected value of it using jQuery? I…
xkcd
  • 2,538
  • 11
  • 59
  • 96
50
votes
9 answers

Editable DataGrid in AngularJS

Is there any AngularJS module as for DataGrid which provides In-Line Editing? There is one in KendoUI http://demos.kendoui.com/web/grid/editing-inline.html Can AngularJS & KendoUI be used together?
Anand
  • 4,523
  • 10
  • 47
  • 72
47
votes
4 answers

how to get selected row value in the KendoUI

I have a kendoUI grid. @(Html.Kendo().Grid() .Name("EntitesGrid") .HtmlAttributes(new { style = "height:750px;width:100%;scrollbar-face-color: #eff7fc;" }) …
qinking126
  • 11,385
  • 25
  • 74
  • 124
46
votes
5 answers

How to change the height of Kendo ui Grid

How do I change the height of the Kendo Grid when using wrappers?
Goran303
  • 591
  • 1
  • 6
  • 16
45
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,653
  • 4
  • 29
  • 44
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
  • 691
  • 3
  • 10
  • 21
42
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,095
  • 1
  • 11
  • 14
40
votes
8 answers

Could not load file or assembly 'WebGrease' or one of its dependencies

When I run my MVC4 Web application it gives the following error: Could not load file or assembly 'WebGrease' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT:…
C Sharper
  • 8,284
  • 26
  • 88
  • 151
37
votes
8 answers

How to Get Dropdown's Selected Item's text in Kendo UI?

I am using Kendo UI Controls. I want to get the selected text of the dropdown list in jquery. I have used this syntax : $("#ddl").data("kendoDropDownList").text(); I am able to get the text in all browsers except IE. I don't know why this is not…
Ram Singh
  • 6,664
  • 35
  • 100
  • 166
37
votes
12 answers

Kendo UI Datepicker disable typing

I want users to be able to change a Kendo UI Datepicker value only through its button and selecting the date from the pop-up. How can I prevent users from typing in the Datepicker textbox? Can I disable the textbox without disabling the whole…
Pejman
  • 3,784
  • 4
  • 24
  • 33
36
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,212
  • 3
  • 29
  • 44
35
votes
6 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
  • 66,960
  • 104
  • 341
  • 555
34
votes
4 answers

Telerik KendoUI vs Sencha ExtJS?

We are going to build a enterprise grade application on Web and for that we have filtered down our choices to ExtJS and KendoUI. Both are decent and have rich features / controls, KendoUI is faster in performance than ExtJS but then ExtJS is like…
deej
  • 2,536
  • 4
  • 29
  • 51
1
2 3
99 100