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
3
votes
0 answers

What kendo datasource schema-model are all about?

I tried to explore this example on dojo And then, I just noticed these lines of code: dataSource: { data: products, schema: { model: { fields: { …
dr.Crow
  • 1,493
  • 14
  • 17
3
votes
1 answer

How To Get Kendo Grid ClientTemplate Value To Javascript

Please find my Kendo Grid below @(Html.Kendo().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(p => p.Callid).Title("CALL…
shyam
  • 101
  • 1
  • 9
3
votes
1 answer

Kendo mvc grid print

I am using ASP.NET MVC with Kendo UI. I want to export grid to an HTML page and print it. Online help is not available. What have your done previously. Thanks in advance.
Badar Ali
  • 77
  • 11
2
votes
1 answer

kendo grid is blank when column name is data

My kendo grid datasource contains a field "data", So the grid is displayed is blank. Here is telerik link Can somebody tell me how to fix this? I don't have option to change column name as something else in the project I'm working var data =…
Mounika
  • 23
  • 3
2
votes
2 answers

Setting Kendo UI Grid DataSource Read property with Handler in ASP.NET Core MVC with Razor Pages

I am using the Kendo UI for ASP.NET Core MVC suite with a Razor Pages web application so I am trying to use the handler technique for the grid's server operations. @(Html.Kendo().Grid() .Name("CustomersGrid") …
Blake Rivell
  • 13,105
  • 31
  • 115
  • 231
2
votes
4 answers

Is there any way to check whether form is dirty or not in JavaScript?

I have one form validator example in java script. In this case, Is there any way to check whether the form is dirty or not? My platform is JavaScript Please find corresponding sample below, and suggest any solution. sample link code snipet: i have…
Kumaresan Sd
  • 1,399
  • 4
  • 16
  • 34
2
votes
1 answer

React with Kendo-ui Grid - Wrong column header

I have a React application using redux as state manager. In this application we are deciding to use Kendo Ui grids. The first test is Ok but we noticed that the columns are totally wrong. We define only 5 Columns to be displayed in the table but we…
alaa_sayegh
  • 2,141
  • 4
  • 21
  • 37
2
votes
1 answer

KendoUI grid cancel checked/selected rows

I have a KendoUI grid with checkbox to select multiple rows, it's dataBound event is : function onDataBound(e) { e.sender.items().each(function () { var dataItem = e.sender.dataItem(this); kendo.bind(this, dataItem); if…
nineveh.Y
  • 167
  • 7
2
votes
2 answers

Kendo UI Grid React customize header

I updated my data grid from Kendo UI React Wrappers to new React package @progress/kendo-react-grid 0.3.0. In old jQuery grid version (or wrapped into React components) I was able to manipulate grid header (e.g.: set columnMenu filterable to false)…
2
votes
2 answers

Kendo UI Angular Grid NumberFormatOptions

I understand there are a few ways to format the numbers in the Angular Kendo UI Grid. For example: {{decimal | kendoNumber:'c' }} But instead of having a currency I would like to format the number in the following format (similar with the currency…
Wald Specht
  • 81
  • 2
  • 4
2
votes
1 answer

KendoUI Angular Grid external command

i'm using KendoUI-Grid in an Angular (5) app. html:
broetchen
  • 41
  • 1
  • 1
  • 5
2
votes
0 answers

How to get Kendo UI grid React wrapper to refresh

I'm using the code below Broke const dataSourceSchema = { model: { fields: { name: { type: 'string' }, description: { type: 'string' } } } }; const gridOptions = { ... }; class ItemsContainer extends React.Component { …
Ryan Vice
  • 2,133
  • 3
  • 23
  • 33
2
votes
1 answer

Can't receive a multidimensional array in ASP.NET.Core MVC controller method

I have the following method in my ASP.NET Core Controller public async Task MyJsonResultMethod(int page,int take, int skip, IEnumerable sort){ ... public class Sort { public string field { get; set; } public string dir {…
dfmetro
  • 4,462
  • 8
  • 39
  • 65
2
votes
2 answers

text-align on kendo-grid-column in angular2

How do I align text to the right on a because both and
mast3rd3mon
  • 8,229
  • 2
  • 22
  • 46
2
votes
0 answers

Kendo UI - AngularJS: Context menu for selected grid row

I am working with Kendo UI and angular grid application. My grid is defined here. Now, I am added kendo-context-menu widget in my html just like:
1
2
3
13 14