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

How to get row index and cell index of row click kendo grid

I have added onchange event for kendo-ui grid. In that I am trying to get the ID value for that particular row. I have added an image column as first column in the grid. What I want is when the image is clicked, I want to open a image url. So,…
user2117983
  • 359
  • 4
  • 11
  • 24
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
1 answer

Kendo ui datasource refresh?

I have used kendo grids and charts fine and refreshed them with the following example code: $("#Product").data("kendoGrid").dataSource.read(); However, I have used the datasource just to provide some basic data in a different view, like in this…
maff2002
  • 181
  • 1
  • 1
  • 3
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
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
17
votes
3 answers

Search All Columns in KendoUI Grid

I am trying to create a search box for a kendoUI grid. I have been able to get a start on doing a search based on one field however I would like the value in my search box to search all columns in the grid. function() { …
BlueBird
  • 1,406
  • 4
  • 24
  • 35
16
votes
2 answers

Kendo UI datepicker incompatible with Chrome 56

After updating Chrome to version 56.0.2924.76 (64-bit), our Kendo datepickers stopped working. All datepickers were bound using ViewModels, and now they don't show their values. If we inspect them we see the value is set, but it's not been…
Ivan Franco
  • 162
  • 2
  • 12
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
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
2 answers

MVC bundeling : Err 403

Using VS'12, Asp.net - C# - InternetApplication Template, KendoUI, EF Code First This is my MVC BundleConfig.cs bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/Scripts/jquery-{version}.js")); …
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
1 answer

How Do I Raise the Change Event in the KendoUI DatePicker?

I'm trying to set the value of my DatePicker using the code below and expecting the "Change" event to be raise but it doesn't. var datePicker = $("#datePicker").data("kendoDatePicker"); var previousDate = new…
JeeShen Lee
  • 3,476
  • 5
  • 39
  • 59
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