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

How to bind foreign key kendo ui dropdownlist (with angular)

I am working with kendo UI and angular grid application. My grid is populated from JSON data (separate file) and I am use angular service: My JSON data: [ { "Id": 1, "AccountNo": "10236", "PostingDate": "20.01.2015", "MaturityDate": "24.01.2015",…
0
votes
1 answer

Kendo UI with AngularJs: How to bind data on textbox fields when user select row in a grid

I am working with Kendo UI and angular grid application. In my application I define Kendo TabStrip. In first tab I have Kendo UI grid with data and second tab contains appropriate textbox fields, which are to be filled when user select some row in a…
oknevermind
  • 101
  • 3
  • 17
0
votes
1 answer

Restier (Odata) expand + count & top not working

I'm actually using Restier 0.4.0-rc2 and I have an issue while expanding my entities. Example : http://localhost/odata/ire/Users?$count=true Everything is correct, count is 97 http://localhost/odata/ire/Users?$count=true&$top=10 Still ok, count…
Musab Gosset
  • 29
  • 10
0
votes
1 answer

How to create view model for underlying JSON data in KendoUI

My question is ow to create a view-model object of a JSON data (parsed from a .json file) using KendoObservable object ? var viewModel = kendo.observable({ dtSource: new kendo.data.DataSource({ transport: { read: { …
this-Me
  • 2,139
  • 6
  • 43
  • 70
0
votes
1 answer

Kendo UI grid pagination issue

I have two buttons(Apply, Submit) on my website. I select a row(Page 1) and navigate to another page(Page 2) via grid pagination then select another row. I make few changes on the row and click 'Apply'. Changes get applied on the current page(page…
0
votes
1 answer

How can mark newly added row in kendo ui grid

I am working on kendo UI grid which is located whitin tabstrip (tabstrip.select(0)). Fields for input are located in second tabstrip (tabstrip.select(1)). Crud operations working properly. My button save click event look's like this: function…
oknevermind
  • 101
  • 3
  • 17
0
votes
1 answer

How to open kendoWindow() on a button click event inside a Kendo grid?

In my Kendo grid, I've a column (address). Instead of displaying customer's address, it shows a button. On clicking the button, I want to open a Kendo window as a modal and display the address. ... { field: "address", title: "Customer Address",…
SJaka
  • 712
  • 13
  • 40
0
votes
2 answers

KendoUI Date field is not filtering. It's Making grid blank

I tried with sample data using below JS code: $(document).ready(function () { var PraksysDateFormats = ["dd-MM-yyyy", "dd/MM/yyyy", "dd-MM-yy", "dd/MM/yy", "dd.MM.yy", "ddMMyy", "ddMM", "dd.MM.yyyy", "ddMMyyyy"]; relationDataSource = new…
Jaish Mathews
  • 766
  • 1
  • 9
  • 25
0
votes
2 answers

How to implement Kendo UI Custom validator on grid level

I have a Kendo UI Grid with is configured for batch editing. What I wish to achieve is a grid level custom validation before the grid's CRUD functions are invoked. So assuming the grid displays a list of employees, and user adds two employees with…
Lucifer
  • 2,317
  • 9
  • 43
  • 67
0
votes
1 answer

can't figure out why my Kendogrid's transport doesn't invoke ajax call when I call Kendogrid's render

I am unable to figure out why my Kendogrid Transport's read doesn't invoke ajax call when I call Kendogrid's render(). All the functions are invoked except read() of Transport. I guess some third eye is required to point out mistake in my code.…
ashy143
  • 169
  • 11
0
votes
0 answers

Kendo Grid MVC simple bind to model

I'm new to MVC and trying to produce a view with a Kendo Grid that will bind to a model. My View has @ModelType CDB.GridDetail @Code Html.Kendo().Grid(Model.GridDetailPersons)() _ .Name("Grid") _ .Columns(Sub(c) _ …
Mych
  • 2,527
  • 4
  • 36
  • 65
0
votes
1 answer

Kendo UI for Web - Create , Destroy , Update model is null

I am trying to create batch insert , update , delete using kendo ui grid and MVC. Here is my code for View and Controller. @{ ViewBag.Title = "Index"; }

Index

Sachin Trivedi
  • 2,033
  • 4
  • 28
  • 57
0
votes
0 answers

row is missing while binding to Kendo ui grid

I have table called User Account. which have values as…
user3657053
  • 49
  • 1
  • 7
0
votes
3 answers

Kendo Grid: Onchange event is not triggering

I'm trying to implement some functionality in "onchange" of text box in telerik kendo grid. But it is not firing in change; instead it's firing on onBlur. The code is here. demo
Premkumar Jayaseelan
  • 681
  • 2
  • 10
  • 30
0
votes
1 answer

kendo grid dynamic field-editable definition

I have kendo-ui grid, with some fields. I need one of the fields to be editable on add new row, and not editable on update row. I try to change data-source definitions before add row, and change it back before update. But the changing doesn't…
user5260143
  • 1,048
  • 2
  • 12
  • 36