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
5
votes
1 answer

How to edit local data for Kendo MVC Grid

As per documentation on Telerik's website for local binding of data: Server - the widget performs server-side requests (HTTP GET) when doing paging, sorting and filtering. Ajax - the widget will make Ajax requests when doing paging, sorting,…
TruthOf42
  • 2,017
  • 4
  • 23
  • 38
5
votes
1 answer

Kendo DateTimePicker set current hour 12:00 AM instead of DateTime.Now

As it can be seen on DateTimePicker / Basic usage, the example I used below sets the current hour 12:00 AM instead of DateTime.Now when pressing the link at the footer of DateTimePicker. How to fix it? @(Html.Kendo().DateTimePickerFor(m =>…
5
votes
1 answer

How to transpose rows and columns in a Kendo UI grid in MVC application?

I am using Kendo Ui Grid in my MVC application. I wish to display statistical data for multiple countries in my grid. The way I retrieve data from the database, my grid would show data a bit like the following: Country Area Population …
5
votes
1 answer

How to add Custom tools to kendo editor

How can I add Custom tools to kendo editor toolbar? I want to add spell checker, Media manager and Cut,Copy , Paste, and cut from word, copy from word and some more tools also. I am using Kendo editor in MVC application.
vijesh
  • 1,115
  • 1
  • 11
  • 27
5
votes
2 answers

Partial View in kendo grid column

I have an ajax enabled kendo grid with a client template that displays data from the model to which the row is bound. (because of ajax, using columns.Template seems not possible.) @(Html.Kendo().Grid() .Columns(columns => { …
AGuyCalledGerald
  • 7,882
  • 17
  • 73
  • 120
5
votes
2 answers

Kendo Grid custom action button icon

OK, this is driving me nuts. I have a Kendo UI grid control with a couple of custom toolbar items. The same toolbar also has some "built-in" commands (Export to Excel, Export to PDF) All works as designed, but... the built-in commands render as…
Jeremy Holovacs
  • 22,480
  • 33
  • 117
  • 254
5
votes
1 answer

prevent kendo ui grid popup editor from closing on insert (asp.net mvc)

Im using kendo ui asp.net mvc Grid in my project. is there a way to keep popup editor open when inserting new data?
Ashkan Nourzadeh
  • 1,922
  • 16
  • 32
5
votes
3 answers

Getting Kendo Grid Name in an Event Handler

How to pass gridName to the Kendo event handler. .Events(events => events.RequestEnd("requestEndEvent"). I am using Kendo UI version 2014.2.716.
Oxon
  • 4,901
  • 8
  • 40
  • 54
5
votes
2 answers

How to disable events in Kendo UI scheduler?I just to make it read only

How to disable the event in kendo UI scheduler?I study the example from the official website examples,and see all of the cell in event have double click event to create and delete and other events,but now I just use it to show the result,so how to…
Lyly
  • 718
  • 1
  • 8
  • 17
5
votes
2 answers

How to bind a Kendo UI Grid to a collection of my model in an editor template using MVC Razor

I Have a Grid that is based on a Model Similar to public class UserModel { ... public IList UserOrg {get; set;} ... } This Grid is set to .Editable(e => e.Mode(GridEditMode.PopUp).TemplateName("...") and open this editorTemplate…
JudgeProphet
  • 1,687
  • 3
  • 26
  • 44
5
votes
1 answer

Kendo UI panelbar

I'm new with Kendo UI PanelBar. I would like to expand the panelbar using javacript when the user click on a button. Thanks for your help. @(Html.Kendo().PanelBar() .Name("TestBar") .Items(panelbar => { …
user1628292
  • 197
  • 1
  • 5
  • 15
5
votes
3 answers

mvc 4 razor view do not understand @Html.Kendo()

I am facing one problem with Kendo UI server wrappers in ASP.NET MVC 4 If I use .ASPX default view It understands the <%: Html.Kendo().Grid() %> But at the same time If I try to add Razor view It do not understand @(Html.Kendo() ) systax. I…
Amit Jog
  • 111
  • 1
  • 4
  • 9
5
votes
3 answers

Kendo grid refresh (databound twice)

I am having a problem while refreshing the kendo grid, for some reason, the dataBound event is activated twice, does someone know what could be the problem? or is this a normal…
Lucas Konrath
  • 567
  • 2
  • 8
  • 19
5
votes
5 answers

how to Change Caption of popup kendo grid by html helper in add window

I am using the popup kendo grid and i use add new record and edit mode and i want change caption of popup window kendo grid by html helper when i add new record.
@(Html.Kendo().Grid() …
Iraj
  • 1,492
  • 5
  • 18
  • 42
5
votes
8 answers

How Can I Have Row Number In Kendo UI Grid

I have kendo grid in asp.net mvc and i use server wrapper.I want Additional column named "Row Number" that is simple counter (1,2,3,...). I want this counter never change by client sorting. Always first row be 1 second row be 2 ,... in column…