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

Show 2 child grids at the same level in a single parent grid in ASP.NET Kendo MVC

Can anyone please provide me the similar solution using kendo MVC as in the below link? Creating 2 child kendo grids at the same level Thanks!
0
votes
1 answer

How do we bind the data in kendo?

function showCopy() { var arr = []; var data = $("#PlanDetailGrid").data("kendoGrid").dataSource.data(); for (var i > = 0; i < data.length; i++) { if (arr.indexOf(data[i].SessionName) === -1) { arr.push(data[i].SessionName); …
0
votes
1 answer

Kendo MVC - Child Grid - Client Tempate - Loading - Exception / Undefined

I getting exception for Expand child grid, When i add client template ProductId / ProductName exception. columns.Bound(m => m.ProductId) .ClientTemplate("#= ProductName #"); Below code value is…
Thulasiram
  • 8,432
  • 8
  • 46
  • 54
0
votes
0 answers

Kendo MVC Date Picker - Loading date in yy/MM/dd format

Im trying to display (load date picker with a value for editing) a date value with in cshtml view in 'yy/MM/dd' format using Kendo MVC Date picker, but it does not show the value. Below is the ASP.NET MVC model - Date Property, [Display(Name =…
0
votes
1 answer

The value 'hours:minutes AM/PM' is not valid

I am using Telerik's timepicker in an MVC razor view. @(Html.Kendo().TimePicker() .Name("StartTime") .HtmlAttributes(new { title = "Start Time" }) .DateInput() .Interval(15) ) By default, it renders like this In the viewmodel class, I…
blue piranha
  • 3,706
  • 13
  • 57
  • 98
0
votes
1 answer

C#, ASP.NET, MVC, Kendo UI Multiselect

I have written code for select all check-box to select all items, I am trying to write function when i uncheck the checkbox it should unselect all items.
0
votes
1 answer

Kendo TimePicker in a Grid: How Do I Get the Value?

I have the following time picker in a Kendo grid: columns.Bound(s => s.StartTime).Title("Start Time").Width(76).ClientTemplate(( @Html.Kendo().TimePicker() .Name("StartTimePicker" + "#=ID#") .Format("HH:mm:ss") …
Scott
  • 2,456
  • 3
  • 32
  • 54
0
votes
1 answer

Kendo Textbox enable / Disable according to multiple statuses

I have a kendo ui textbox and i need to enable / disable that control accoding to status.It works for 1 status but when i put another status with that it's not working Control Below one is working @Html.Kendo().TextBoxFor(model =>…
TechGuy
  • 4,298
  • 15
  • 56
  • 87
0
votes
2 answers

How to hide total sum column and row in Kendo UI asp.net mvc Pivot grid

In the Pivot grid (Kendo UI asp.net MVC), I have tried to hide the last column and row but could not succeed (ie. the column and row that shows total field which is default in the grid). I search on google but I didn't get the correct answer. Can…
0
votes
1 answer

Kendo Grid Inline Editing Get current row data when updating

I am using Inline editing in a Kendo Grid and I want to be able to get the current row data when doing an update. Html.Kendo().Grid() .Name("ShipToLocationsGrid") .Editable(editable =>…
Brian Kalski
  • 897
  • 9
  • 35
0
votes
2 answers

How to hide one column based on condition in kendo grid

Below is my kendo grid in this grid I need to hide Case Number column conditionally that means if(admin == true) I need to show this column or else I need to hide this column how can I do…
testusernew n
  • 13
  • 1
  • 8
0
votes
2 answers

Hide column from grid while exporting to excel

I want to hide/remove one column when the data exported to excel..But that should be visible in grid. I have tried several solutions but not able find out the exact problem. Currently excel is generating but unable to hide the column... Can anybody…
Raj
  • 9
  • 6
0
votes
1 answer

Using Kendo Grid - onclick requires an extra click to call a jquery method

I have 7 columns (using html Kendo Grid), and the ID column is a PK of each row and its visible(false). So.. When you click on any "Name" data, it grabs a PK(the ID that is invisible) of the row you selected, and a modal screen will pop up so you…
davis
  • 340
  • 1
  • 4
  • 17
0
votes
1 answer

Changing kendo textbox value loses formatting

I have a basic textbox defined as: @Html.Kendo().TextBoxFor(m => m.myNumber).Format("{0:#,###}").HtmlAttributes(new { @readonly = "readonly", style = "width:150px;" }) After doing an ajax call I update the value via…
Legion
  • 3,922
  • 8
  • 51
  • 95
0
votes
1 answer

Rerender View with condition

There is a following View: