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

Binding is failing on a kendo ui grid in asp.net core 3.1

I am using the Telerik kendo data grid I am using a web API to get the data back into my grid if we look at the following. The following is how I have defined my kendo read method the only difference to this app from ones I have got working before…
0
votes
1 answer

Formatting date column in Kendo ASP.NET MVC Grid

How do I format this date like: Today, Yesterday or in Telerik Kendo ASP.NET MVC grid? columns.Bound(c => c.DesktopActivation) .ClientTemplate("#= DesktopActivation ? renderActivationInfo(DesktopActivation) : '
abenci
  • 8,422
  • 19
  • 69
  • 134
0
votes
1 answer

Passing data to Kendo Window on a button click of Kendo Grid

on a button click event (custom command in the grid), i would like the data to kendo window (loadcontentfrom) action and wondering if anyone can guide please?
Baahubali
  • 4,604
  • 6
  • 33
  • 72
0
votes
1 answer

Kendo multiselect enable summary tag mode after a few selections are made

I have a kendo multiselect i have set up in summary tag mode with this template: # if (dataItems.length < 4) { # # for (var idx = 0; idx < values.length; idx++) {# #:dataItems[idx].Name# # if (idx < values.length - 1)…
John Lord
  • 1,941
  • 12
  • 27
0
votes
1 answer

Kendo MVC DropDownListFor binding issue

I am new to Kendo MVC, so please bear with me. I have the following code to create a Kendo MVC DropDownListFor: @(Html.Kendo() .DropDownListFor(m => m.PrimaryId.Kind) .SelectedIndex(-1) …
Octavian Epure
  • 1,019
  • 5
  • 19
  • 35
0
votes
1 answer

Kendo Grid throw exception on client side : Cannot read property 'length' of undefined

I made a kendo Grid in Razor with dynamic columns and grouping.The Controller successfully fetch records on every condition and pass it as Json Response to kendoGrid. On client side Kendo.all.min.js gives an error saying Cannot read property…
Sibtain
  • 108
  • 16
0
votes
0 answers

How to rename buttons in Asp.Net Core Kendo Grid filter?

I try to change filter buttons in Asp.Net Core Kendo Grid, but it works only for operators: .Filterable(filterable => filterable .Extra(true) .Messages(msg => msg.Info("Text1").Filter("Text2").Clear("Text3")) .Operators(operators =>…
Al Maslov
  • 13
  • 6
0
votes
1 answer

Kendo Grid serverFiltering filter jquery getting filter object null in C#

Please help me - why am I not getting filter request param in C# controller? I am not able to get all the filter data in controller side I have tried following: How to perform server side filtering on Kendo UI Grid…
0
votes
0 answers

How do I use different datasources for kendo UI grid?

I'm not too familiar with Kendo and have watched some tutorials but even following exactly I do not get the same result. I made a page using cached data and pass it as a datasource to the grid in different ways. In this code, the read method is not…
Scar
  • 725
  • 2
  • 7
  • 28
0
votes
0 answers

Kendo Window - Use Custom Update

I have the following Kendo grid: @(Html.Kendo().Grid() .Name("grd") .ToolBar(toolBar => { toolBar.Create(); }) .Sortable() .Scrollable(a => a.Height("auto")) …
Scott
  • 2,456
  • 3
  • 32
  • 54
0
votes
1 answer

ASP.NET MVC Kendo Grid how to call controller method from javascript

Because I have a custom modal confirmation popup, I'll need to call the the method .Destroy("Remove", "Attachment") from javascript. How do I call the Remove method from javascript? I've indicated in the code how to call where I'd like to be able to…
sojim2
  • 1,245
  • 2
  • 15
  • 38
0
votes
0 answers

Kendo Dialog + Grid, how to pass grid name to functions on a page with many grids

I have many kendo grids on one page with custom kendo dialog delete function, and I'd like to get the exact grid name of the delete custom function: .Name("RevenueGrid1") .Columns(columns => { …
sojim2
  • 1,245
  • 2
  • 15
  • 38
0
votes
1 answer

MVC Kendo Grid conversion ToDataSourceResult taking long, how to speed up

I am new to MVC and absolutely a beginner in Kendo. I have a Kendo grid on an MVC page which is taking too long to load, after a bit of investigation I discovered that the following line is the culprit return…
Abe
  • 1,879
  • 2
  • 24
  • 39
0
votes
1 answer

How to disable field in inline editing based on value in another column in Kendo?

image of my kendo grid
@(Html.Kendo().Grid() .Name("gridProjectTechnologies") .HtmlAttributes(new { @class = "k-grid-autoheight" }) …
Alex
  • 7
  • 1
  • 5
0
votes
0 answers

Set data to kendo dropdown while loading data from model

Set data into kendo dropdown from model while loading @(Html.Kendo().DropDownListFor(m => m.CaseValue) .DataTextField("Text") .DataValueField("Value") …
Anuj
  • 51
  • 3
1 2 3
99
100