Questions tagged [kendo-grid]

The Kendo Grid is a Kendo widget that displays tabular data and offers rich support interacting with data, including paging, sorting, grouping, and selection. Grid is a powerful widget with many configuration options. It can be bound to local JSON data or to remote data using the Kendo DataSource component.

The Kendo Grid is a Kendo widget that displays tabular data and offers rich support interacting with data, including paging, sorting, grouping, and selection. Kendo Grid is a powerful widget with many configuration options. It can be bound to local JSON data or to remote data using the Kendo DataSource component.

Resources

Related tags

7482 questions
2
votes
4 answers

Setting tabindex for kendo numeric text box

How do I set tab index for numeric text box.. My code is .. $("#max_award_amount").kendoNumericTextBox({ min:0, max: 99999999.99, }).attr("tabindex","4"); But it is not working as expected.
Kiren S
  • 3,037
  • 7
  • 41
  • 69
2
votes
1 answer

Menu text disappears when you hover over a menu that is in a kendo ui grid toolbar in

In Kendo UI When you hover over a menu in a grid toolbar, the menu text disappears. I wondered whether this was a kendo ui bug or whether I have done something wrong? I’m using the metro theme. Here's a screen shot of the problem: Here's the code…
Carl Rippon
  • 4,553
  • 8
  • 49
  • 64
2
votes
1 answer

Kendo UI Grid not loading data from datasource

I am new on kendo UI framework. I am struggling with observable datasource with kendoGrid. The problem is the table gets created but with empty data. Here is the link http://jsfiddle.net/praveeny1986/Pf3TQ/5/ And the code : var gridDataModel =…
Praveen Yadav
  • 391
  • 4
  • 13
2
votes
1 answer

Kendo Grid DataSourceRequest ArgumentException trying to sort

I am using this code to get my data and push it to the Kendo Grid public ActionResult Read([DataSourceRequest] DataSourceRequest request) { return Json(GetData(request), JsonRequestBehavior.AllowGet); } private DataSourceResult…
Perry
  • 2,250
  • 2
  • 19
  • 24
2
votes
1 answer

kendo grid, why e.model.set not working

in my kendo grid, I have 3 columns, balance, adjustment, and adjustment balance. adjustment balance is the total of balance and adjustment. it will be calculated. If I make a change to adjustment field. adjustment balance should automatically…
qinking126
  • 11,385
  • 25
  • 74
  • 124
2
votes
2 answers

Kendo grid post and delete send null to controller

I'm posting a kendoui web grid and it isn't sending data and I can't see what I'm doing different from the sample that's failing. I'm posting to the controller, but it's either empty (if batch: true or null if batch: false) var crudServiceBaseUrl…
James Fleming
  • 2,589
  • 2
  • 25
  • 41
2
votes
3 answers

MVVM binding to a Kendo Grid is VERY slow?

I am trying to bind a ViewModel to a Kendo DataSource which in turn is given to a Kendo Grid. Nothing too fancy at this point. It sort of works but is VERY slow! I have an alert informing me that I have received my json data (700 rows) within 2…
Marcel
  • 2,148
  • 6
  • 31
  • 48
2
votes
1 answer

Kendo UI MVC Grid Selection Updates separate control

Forgive me for my silly questions as I am both new to MVC as well as Kendo UI, and am still trying to figure out what is possible. I have a page layout where I have a grid on the top half of the page and a Tabbed Panel on the bottom. When a user…
2
votes
2 answers

How to combine row templates and detail templates using Kendo Grid

I have a Kendo Grid and I'm using row and alternate row templates. I want to add a detail template. How do I format the first cell for the row and alternate row templates to get the detail template to work? I can't see the icon and the click events…
Rodney Hickman
  • 3,133
  • 11
  • 53
  • 83
2
votes
1 answer

Kendo UI copying data through controls

Is it possible to take 2 separate Kendo UI grids and be able to pass data back and forth through UI controls (like forward and backward arrows)? The pattern would would be to take the master list on the left, select items and have a refined list on…
user763460
  • 221
  • 2
  • 8
  • 18
2
votes
1 answer

Is possible resize grids and its content in kendo-ui?

Is possible resize grids and its content in kendo-ui? I want to use it for a responsive web application. I mean resizable columns, rows and the content inside (text, images, ..)
vicenrele
  • 971
  • 3
  • 19
  • 37
2
votes
1 answer

Kendo UI Grid DateTimePicker Editor Template - Keep value

I have a Kendo UI Grid with asp.net mvc syntax. I have a column with a datetime along with a editor template for edits. When I click edit it shows the datetimepicker but I'm unsure how to keep the current value (InvoicedDate) if one is already…
Elim99
  • 663
  • 3
  • 17
  • 34
2
votes
1 answer

Kendo UI Grid Ajax Destroy Success

I am really new to KENDO UI, I am also a little confused because I am using VB.Net with Kendo and the translation is a little weird, so with all that stated lets get to the question. I am using a Kendo Grid in a ASP.Net MVC page as follows: …
user1979215
  • 35
  • 1
  • 3
2
votes
4 answers

Kendo UI grid: refreshing grid data every 60 seconds with new data: dataSource and observe()

I want to refresh the Kendo UI grid's contents every 60 seconds with up-to-the-minute data. EDIT: Here's how the dataSource is being assigned at initial configuration: parsedData = $.parseJSON(data); var dataSource = new kendo.data.DataSource({ …
Tim
  • 8,669
  • 31
  • 105
  • 183
2
votes
3 answers

Rebind Kendo Grid in MVC

I am trying to rebind Kendo Grid on a button click after filtering data using the JavaScript below, but it is not working. What should I do? My HTML code using…
Balwinder Pal
  • 97
  • 2
  • 10
1 2 3
99
100