Questions tagged [kendo-asp.net-mvc]

Questions regarding server side wrappers enabling the use of Kendo UI widgets from C# or VB.

Kendo UI for ASP.NET MVC is a set of server-side wrappers that allow using the Kendo UI widgets from C# or VB.NET code.

A server-wrapper does the following.

  • Allows the developer to configure a Kendo UI widget via C# or VB.NET code - set its value, data source etc.
  • Renders the HTML and JavaScript needed to initialize the Kendo UI widget. The widget options propagate to the client-side via the widget initialization script.
Kendo UI Web
Contains the core functionality of Kendo UI framework, including the DataSource component, templates, drag-and-drop, and themeable widgets with integrated animations.

Kendo UI DataViz
A collection of HTML5-powered, mobile-ready, data visualization widgets.

Kendo UI Mobile
Native UI widgets for building HTML5-powered apps and sites for modern mobile devices.

Resources


Related tags

2730 questions
6
votes
2 answers

Cannot open the edit popup of kendo grid using jquery

I am implementing a context menu for my kendo grid on MVC page. I am trying to call the edit button on my kendo grid using on click of the context menu. I have implemented event on my context menu and on the event written jquery code to call fire…
Tom
  • 8,175
  • 41
  • 136
  • 267
6
votes
1 answer

Convert Kendo DataSourceRequest back into query string

Is there a built-in helper in the Kendo MVC libraries anywhere that will convert a Kendo Grid's DataSourceRequest object back into a querystring from within a MVC6 controller? Something like a "model unbinder"? If DataSourceRequest were a simple…
FirstDivision
  • 1,340
  • 3
  • 17
  • 37
6
votes
1 answer

Specify size and maxlength for Html.Kendo().TextBoxFor

I am using Server Side Validation On ASP.NET MVC Kendo UI. On a view(used to create) for a text field like this: @Html.Kendo().TextBoxFor(model => model.CompanyTypeName).Name("CompanyTypeName") I need to change the size of textbox. I tried like…
Metaphor
  • 374
  • 1
  • 5
  • 20
6
votes
2 answers

Dynamic default value for Kendo Grid

I want an auto increment column in my Kendo Grid. This field isn't server side auto increment, because I want the user to see the value and be able to change it. My current solution is to add a click attribute to Create button and loop over rows to…
Akbari
  • 2,369
  • 7
  • 45
  • 85
6
votes
2 answers

Kendo multiselect control - Remove selected items from dropdown

I have kendo multi-select control on my asp.net mvc view. Whenever user select values from the control, it is visible on two places 1. On the textbox area and 2. highlighted item on the dropdown list. I want to remove the selected items from the…
user3608840
  • 97
  • 2
  • 9
6
votes
1 answer

Handle destroy event in kendo scheduler

I am using a kendo scheduler. There are events added in scheduler grid. On mouse hover of each event a small (x) comes on top right corner. i.e destroy event for that event, which when clicked shows an warning message "Are you sure you want to…
6
votes
1 answer

Using an MVC model to populate and validate a kendo multiselect?

I am trying to bind my kendo multiselect to a property in a model using mvc 5 however all i get is a list of undefined elements. The list is correct at the controller level and looking at the source code the list is correct there but I can not…
LoftyTowers
  • 563
  • 5
  • 24
6
votes
3 answers

Kendo Grid Export to Excel -All Pages not working

I have a pageable and filterable grid which I set up to export to excel using the new Kendo Grid Excel feature. However, even when I set AllPages to be true I only get the first 10 results, no matter what I set the pagesize to. Removing the…
Matt Kagan
  • 611
  • 1
  • 12
  • 24
6
votes
1 answer

Change Kendo combobox placeholder text in javascript has no effect

MVC 5.2.2 Razor 3.2.2 Kendo MVC UI v2014.2.903 In Javascript, when I want to change the placeholder text of a ComboBoxFor, I thought I could do: @model MyNameSpace.Models.Address @(Html.Kendo().ComboBoxFor(model => model.ZipCode) …
Robert Achmann
  • 1,986
  • 3
  • 40
  • 66
6
votes
1 answer

how to create saveChanges callback function in grid kendo mvc

I'm having some timing issues and was wondering if there is a way for saveChanges to have a callback when it's save is complete?
6
votes
3 answers

How to achieve N-level nested hierarchy in Kendo UI Grid using ASP.NET MVC

I am trying to implement N-level nested hierarchy in Kendo UI Grid using ASP.NET MVC i can implement specific number of Nested Grid but how to implement N-level nested Grid using a Specific Data in asp.net…
John Sheedy
  • 287
  • 1
  • 8
  • 26
6
votes
3 answers

Where to find Kendo.Mvc.Examples.Models

I am trying to create a Kendo Scheduler, but you need to pass in a model. In the examples it tells you to use: @(Html.Kendo().Scheduler()) But of course I don't have this view model. Can someone…
6
votes
1 answer

Call a server side MVC action on the click of a Kendo UI button

I just download a trial version of v2013.3.1119.440 of the Kendo UI wrappers for ASP.NET MVC. I see a new Kendo.Mvc.UI.Fluent.ButtonBuilder wrapper in this version that wasn't in the version I had downloaded just 20 days ago on another PC. The said…
Water Cooler v2
  • 32,724
  • 54
  • 166
  • 336
6
votes
1 answer

Kendo Grid Mvc - Cannot be shown custom error message on view page

I am using a Kendo Grid in my MVC project. My problem is that the error message is not shown on the view page. When I look at the JSON data with developer tools, I can see the error data which is correct: { "Data": null, "Total": 0, …
balron
  • 709
  • 4
  • 18
  • 40
6
votes
4 answers

Kendo Grid - Horizontal Scrollbar does not appear when there is no data

I have a Kendo UI Grid as listed below. The horizontal scroll bar is appearing when there are records. But it does not appear when there are no records. How to bring the scroll – bar even if there are no records. Grid
LCJ
  • 22,196
  • 67
  • 260
  • 418