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
33
votes
4 answers

How to force a Kendo UI modal window to center in a page? and how to disable all the actions?

I'm trying to display a Kendo UI modal window in the center of the browser, but it keeps showing up at the bottom of the page, by this I mean the only visible part of the window is the top bar, the rest of the window is out of sight, only when you…
Uriel Arvizu
  • 1,876
  • 6
  • 37
  • 97
33
votes
2 answers

How to change Kendo UI grid page index programmatically?

I have a kendo ui grid. Let's say that the JS variable pointing to the grid is called grid. How can I go to page 3 programmatically? Thanks.
Lajos Arpad
  • 64,414
  • 37
  • 100
  • 175
31
votes
5 answers

How to get the displayed data of KendoGrid in json format?

I have a kendoGrid and i would like to get the JSON out of it after filtering and sorting how do I achieve this? something like the following, var grid = $("#grid").data("kendoGrid"); alert(grid.dataSource.data.json); // I could dig through…
user677607
30
votes
3 answers

How to implement Server side paging in Client side Kendo UI grid in asp.net mvc

Can anyone tell me how can I implement server-side paging with client-side Kendo UI Grid?
Pankaj
  • 4,419
  • 16
  • 50
  • 72
29
votes
4 answers

JSON.stringify is ignoring object properties

See the jsfiddle example http://jsfiddle.net/frigon/H6ssq/ For some reason there are fields that JSON.stringify is ignoring. Is there a way to force JSON.stringify to parse them? As the jsfiddle shows... this code...
frigon
  • 4,979
  • 7
  • 32
  • 38
28
votes
4 answers

How to remove all rows from a Kendo grid

I am using Kendo grid. I want to remove all rows from Kendo grid using JavaScript. I removed them using a for loop but I want to find the best way to remove all rows.
Rikin Patel
  • 8,848
  • 7
  • 70
  • 78
27
votes
4 answers

Send Additional Parameter in Kendo Grid Read Action

I have a kendo Grid as follows. @(Html.Kendo().Grid() .Name("WeeklyRevenue") .Resizable(resizing => resizing.Columns(true)) .Columns(columns => { columns.Bound(p => p.Number).Width(100); …
user3210746
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
25
votes
3 answers

Kendo UI Globalization / Language packs

Kendo UI does not come with localization packs. You can only chose a culture file which will only setup number and date formats, but not the actual texts displayed in the widgets (for example: the pager texts - items per page, next page, etc., the…
Loudenvier
  • 8,362
  • 6
  • 45
  • 66
25
votes
4 answers

Closing a kendoui window with custom Close button within the window

I'm using Kendo UI's window component, which is similar to any modal dialog. I have a close button in it, how do I close the window upon clicking that button (instead of clicking the default 'x' button in the title bar) The content in my window is…
Null Reference
  • 11,260
  • 40
  • 107
  • 184
24
votes
6 answers

Set Today date to kendo datepicker

I want to set today date to Kendo DatePicker on clear button click. I tried following but it is not working. $('#btnClear').click(function () { $("#StartDate").data("kendoDatePicker").value(new Date()); }); Above code don't give any error and…
Dhwani
  • 7,484
  • 17
  • 78
  • 139
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
6 answers

Is it really worth mixing AngularJS and or KendoUI?

Recently, in working with AngularJS, I really like many of the features, like creating custom abstract data factories, etc. KendoUI also has similar features like MVVM, SPA routes, etc. that AngularJS offers, so I'm curious about what the benefits…
ElHaix
  • 12,846
  • 27
  • 115
  • 203
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