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
7
votes
2 answers

Binding date value to ng-model in angular kendo date picker

I have an api which return the date in this format "014-08-26T15:10:45.402Z" i am using angular kendo ui .The problem i am facing is the date is not getting bound to the kendo date picker.Could someone help me out .
sam rodrigues
  • 580
  • 2
  • 7
  • 16
7
votes
2 answers

Telerik Kendo MVC Grid child template get default value from parent

Hi I am editing in Kendo MVC Razor child template, I need to set the default value for the item id from the parent. It works if the property I try to set is a string, but not if it is an int. See the comment in the code below. If it is not possible…
7
votes
2 answers

MVC Kendo Grid Custom Filter

Basically, I am looking for the MVC version of this demo: http://demos.telerik.com/kendo-ui/grid/filter-menu-customization Here is what I currently have: .Columns(columns => { columns.Bound(e => e.ID) .Hidden(); …
7
votes
5 answers

Kendo grid how to pass additional parameter from java script

in telerik extenstion to pass additional data to ajax request I used function onDataBinding(e) { e.data = {argument : 4}; } where e was div cointainer with data object inside, How can I do this using kendo ? I tried the same but for Kendo e…
kosnkov
  • 5,609
  • 13
  • 66
  • 107
7
votes
2 answers

Grid custom Command having hierarchy is calling javascript function twice.

I am using kendo grid having hierarchical grid(parent grid and sub grid) with custom.command; When view button of Child(in Case of parent grid it runs fine) is clicked it should calls java-script function which shows detail for that row but what is…
7
votes
2 answers

How to bind the Kendo Grid in asp.net MVC 4 Razor

I have create the asp.net MVC 4 application where i am using the entity framework and class "Data" is the model. AdventureWorksTrainingEntities _dbContext = new AdventureWorksTrainingEntities(); Data _data = new Data(); //Model Now i want to…
7
votes
4 answers

Making Kendo Datepicker readonly but also selectable

I´ve been struggling to make my Kendo Datepicker without user-text-input and the only solution I´ve come up with was making the tag "readonly". However I want to be able to select the date from the selector with the mouse without being able to…
gardarvalur
  • 1,565
  • 9
  • 39
  • 65
7
votes
2 answers

Why Is `data(“kendogrid”)` Undefined?

I'm a starter in kendo.ui, I've written this code to create kendo.ui.grid @(Html.Kendo().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(p => p.BrandName); columns.Bound(p => p.BrandAbbr); …
Pouya
  • 1,908
  • 17
  • 56
  • 78
7
votes
2 answers

Kendo UI Async Upload not working in Internet Explorer

I'm trying to use the Kendo UI Upload (MVC wrapper) in async mode. Things seem to work fine in Chrome, but no such luck in IE (as of now only tested in IE 9). When it initiates the upload, I can see it hitting my action method and the request…
7
votes
1 answer

Kendo ListView: cant refresh (reload) data

Here is my ListView: @(Html.Kendo().ListView() .Name("listView") .TagName("div") .ClientTemplateId("template") .DataSource(dataSource => { dataSource.Read(read => read.Action("Products_Read", "Home").Data("additionalData")); …
user2265414
  • 111
  • 1
  • 1
  • 6
7
votes
4 answers

How can I strip all html formatting from text when pasting into KendoUI Editor?

I want to use KendoUI editor to basically only allow users to format text into paragraphs. Possibly allow bold and underline. I'm struggling with 2 things: I want to strip all html formatting from text when pasting I want to disable keyboard…
richardwhatever
  • 4,564
  • 5
  • 23
  • 26
7
votes
3 answers

Control Kendo Script Position Rendering in MVC

I'm using the Kendo ASP.NET MVC wrappers. I noticed the wrappers are rendering the scripts to initialize the controls immediately after the control markup. Is there a way to configure to have the scripts render at the bottom? Before, with the…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
6
votes
3 answers

How do I change the Kendo alert title?

I'm using a Kendo alert and want to change the title of it. The default title is the url name, see link(image) below. I want to use my own title, how do I change this? Image Kendo alert The kendo alert: kendo.alert("mytext");
Rico Koldi
  • 376
  • 2
  • 10
6
votes
1 answer

How to bind nested model property to kendo grid column?

I have a model which includes a property of datatype list of another model as below. public class Eatables { int id {get;set;} string name{get;set;} List ingredientList{get;set;} } public class Ingredient { int id {get;set;} …
6
votes
1 answer

Change number format according to valueFormat column in kendo Grid

I have created dynamic kendo grid.In grid there is some columns which required formatting. I have one field "valueFormat" in database according that format I want to format other columns. How to achieve above thing Please help. link for sample…
Prajapati Vikas
  • 294
  • 1
  • 10