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

how to get key row selected in kendo ui grid

i write this code for create Grid with kendo Ui in asp.net mvc @(Html.Kendo().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(p => p.Id).Groupable(false).Visible(false); …
Pouya
  • 1,908
  • 17
  • 56
  • 78
9
votes
1 answer

Kendo Multiselect: Selected values from binded model are not initialized

Update: To shorten the question: How to bind a SelectList to a Kendo UI MultiSelect Widget using Razor? Original question: In an ASP.NET MVC 4 Application, I am trying to get the Kendo Multiselect working. I am binding the Multiselect widget to my…
Lopo
  • 936
  • 2
  • 11
  • 18
8
votes
2 answers

How to make Kendo MVC Helpers's CRUD using JSON as contentType

@(Html.Kendo().DropDownListFor(model => model.ServiceID) .OptionLabelTemplate("#=optionLabel#") .ValueTemplate("#=Code#(#=Rate#) - #=Description#") .Template("#=Code#(#=Rate#) - #=Description#") .DataTextField("Code") …
shole
  • 4,046
  • 2
  • 29
  • 69
8
votes
1 answer

How do I bind the Kendo Textbox control to its data?

I have designed a view using some of the Kendo Telerik controls. I am not sure how to bind their controls to data. This generated scaffolded method works : @Html.EditorFor(model => model.surName, new { htmlAttributes = new { @class =…
Andy
  • 299
  • 1
  • 2
  • 13
8
votes
3 answers

Kendo UI grid filters not working inside a bootstrap Modal

I got this strange issue on Kendo UI grid. I have a grid which is filterable, but it is inside the modal. But the problem is when i Filter a column (Text column) i cannot type on the filter textbox. It is weird because in all browser it doesnt work.…
ECie
  • 1,265
  • 4
  • 21
  • 50
8
votes
1 answer

What is different between refresh method and redraw method in Kendo-UI chart?

I find the kendoui chart has two methods: refresh method and redraw method, what is the difference? I think both of them is to draw the chart again. But if the chart is binding from remote data according to ajax, the request will not fire…
Lyly
  • 718
  • 1
  • 8
  • 17
8
votes
3 answers

How do you make a kendo datepicker do date validation for a minimum date?

I have the following control: @(Html.Kendo().DatePickerFor(model => model.Attributes.DueDate) .HtmlAttributes(new { ID = "idSurvey_DueDate", @data_bind = "value: DueDate", @Class = "report-label datepicker…
hyprsleepy
  • 1,810
  • 6
  • 25
  • 35
8
votes
2 answers

how to create custom kendo.ui.Window for edit in kendo.ui.grid

I'm starter in kendo.Ui , i write this code for create 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
8
votes
1 answer

Kendo DropDownListFor() with ASP.NET-MVC

i have a problem into the ASP.NET-MVC Helper I have a form that give a POST into action **create of the controller Occurrence passing a parameter of type occurrence that corresponding at the Model of the view where the form is inserted, for…
Lucas Konrath
  • 567
  • 2
  • 8
  • 19
8
votes
2 answers

NuGet for Kendo.Mvc.dll

I am using ASP.MVC and Kendo for my web application. Currently, I've this code: public FileResult Export([DataSourceRequest]DataSourceRequest request) { // do something } DataSourceRequest is available in Kendo.Mvc.dll. Currently, I got the .dll…
Iswanto San
  • 18,263
  • 13
  • 58
  • 79
7
votes
1 answer

What's happen when I open a project, on another project in Visual Studio 2013 that is running?

I have a problem that it's very weird for me! I have 2 solution in two difference places.both of them are similar but one of them is older than another. There is a problem in new version when I run a Kendo Grid on it.But when I open old version of…
x19
  • 8,277
  • 15
  • 68
  • 126
7
votes
3 answers

How do I reference a specific cell in kendo grid with javascript?

Right now I have a kendo grid with 2 rows and 6 columns. I need some logic to highlight a specific cell but I don't know how to reference a cell. I used this example but I don't know what to pass in as the id. myHub.client.highlightRow = function…
Curious Cat
  • 309
  • 1
  • 3
  • 14
7
votes
1 answer

How to add a font-awesome icon to kendo UI MVC menu?

I'm trying to add a font awesome icon into a kendo UI ASP.NET Menu. Unfortunately I can't find an example at Kendo on how to do it. The code is as follows: @(Html.Kendo().Menu() .Name("PreferencesMenu") …
Justin
  • 95
  • 2
  • 6
7
votes
4 answers

Kendo UI Grid for MVC export to Excel does nothing

I am using Kendo grid for MVC 4.0. I have the latest DLL 2015.1.318.440. I am including jszip.js. I copied and pasted the code from the example: .ToolBar(tools => tools.Excel()) .Excel(excel =>…
stuart
  • 215
  • 2
  • 8
7
votes
3 answers

Cannot export hidden columns in Kendo Grid

I want to hide some columns on Kendo Grid and export them to the excel as the visible columns. However, using Hidden(true) or Visible(false) does not make any sense and these fields are not exported. The workarounds on this page is not working. Any…
Jack
  • 1
  • 21
  • 118
  • 236