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

Cannot read property 'sort' of null

I have one template for the grid which I used in two places and grids have a different id's of course. @(Html.Kendo().Grid(Model.Equipment) .Name(string.Format("equipmentGridReview-{0}", DateTime.Now.Ticks)) .Columns(columns => …
Stas Zgurskiy
  • 49
  • 2
  • 12
0
votes
1 answer

How to set up default value for Null Type in Kendo UI asp net MVC

I use Kendo UI ASP NET MVC grid and I want to make the default value in Model section for nullable type(for example string) as below @(Html.Kendo().Grid(Model.Comments) .Name("...") .DefaultSettings() …
Stas Zgurskiy
  • 49
  • 2
  • 12
0
votes
0 answers

Kendo Uncaught TypeError: Cannot read property 'table' of undefined

this is my kendo dropdown code: @(Html.Kendo().DropDownList() .Name("AttributeTypeId") .DataTextField("AttributeTypeName") .DataValueField("AttributeTypeId") .DataSource(source…
0
votes
0 answers

Kendo Combo box always selecting first item on Tab

I have the following code in my Kendo Combo Box: .Events(events => { events.Select("carUpdate"); events.DataBound("dropDownBind"); }) My carUpdate js method is then as below: function carUpdate(e) { debugger; var…
Ctrl_Alt_Defeat
  • 3,933
  • 12
  • 66
  • 116
0
votes
1 answer

Why is [object Object] viewed in column when trying to bind columns in MVC

This is the JS I call in Index on document ready jsonfields = @Html.Raw(Json.Encode(ViewBag.ColumnData)); This is the Ajax Call which I Make to bind function onTeamTreeLoad(e) { try { $.ajax({ type: "POST", url:…
0
votes
1 answer

Kindo Grid in MVC is displaying raw data

I'm new to Kendo and learning how to integrate it with MVC and display data in a grid. My controller [HttpGet] public ActionResult StudentList([DataSourceRequest]DataSourceRequest request) { DataSourceResult result = …
Medhanie W.
  • 149
  • 3
  • 12
0
votes
1 answer

Kendo grid mvc filterable option for column nested property

I am using asp.net core MVC kendo grid column with a nested property.I have column "CreatedDate" of type datetime but i want to use only date part from the property like "CreatedDate.Date". I have applied filterable option for column "CreatedDate"…
0
votes
0 answers

Telerik Kendo generate Donut chart and export to pdf in backend without UI C#

I have a requirement to generate PDF for a donut chart in MVC. I am able to implement it from UI as given in demo but the requirement is that I need to create chart and then to PDF all in backend with no UI. So from backend I need to fetch data from…
Avinash Kumar
  • 167
  • 2
  • 12
0
votes
1 answer

uncaught error: invalid template Kendu Dropdownlist

@**@ @(Html.Kendo().DropDownList() .Name("AttributeCode") .DataTextField("AttributeCode") …
0
votes
1 answer

kendo parameterMap return Undefined

I have a CostCenter ComboBox trying to grab an ID of the selected item from CompanyCode comboBox and pass it into an URL, but I don't understand why I keep getting "undefined" in the URL. ---JS--- …
dnguyen
  • 1
  • 2
0
votes
1 answer

Kendo scheduler can't edit event in mobile mode

I am facing a problem with my Kendo Scheduler while in mobile mode. I can't edit my events in my kendo scheduler while using the mobile mode, while I can in desktop mode. I tried to add a Mobile(MobileMod.Phone) or auto or something else, there is…
0
votes
0 answers

C# Grab value from Expression

In my program I am trying to pull Value below into a variable: Via: var member = (object)request.Filters[0]; string value = member.Value; The problem is my program won't compile even though the value I am trying to get clearly exists.…
Jebathon
  • 4,310
  • 14
  • 57
  • 108
0
votes
0 answers

Kendo MVC Grid Filtering - Filters that consider multiple fields

I have a MVC Kendo grid where one column is a client template that actually uses multiple fields. By default the built in filtering is only applied to the field the column is bound to. How do I override that so it considers both fields. Ie, when I…
Natalka
  • 258
  • 1
  • 14
0
votes
1 answer

trigger Validation if Start Date > End Date kendo datepicker

I'm trying to modify my sample application using this Kendo demo
@Html.LabelFor(model => model.StartDate, htmlAttributes: new { @class = "control-label col-md-2 k-label" })
Kelum
  • 1,745
  • 5
  • 24
  • 45
0
votes
1 answer

Kendo nested grid bind inner grid when expand the row in asp.net MVC application

I'm implementing an asp.net MVC application that includes a page with nested data Grid. Currently, I'm binding data using a single complex data object and it's loading data correctly. But the problem is when inner grids have so much data it takes…
Isanka Thalagala
  • 1,625
  • 3
  • 16
  • 32