Questions tagged [telerik-mvc]

Questions about Telerik ASP.NET MVC Extensions

Questions about Telerik ASP.NET MVC Extensions

993 questions
7
votes
2 answers

MVC Kendo Grid Custom Filter

Basically, I am looking for the MVC version of this demo: http://demos.telerik.com/kendo-ui/grid/filter-menu-customization Here is what I currently have: .Columns(columns => { columns.Bound(e => e.ID) .Hidden(); …
7
votes
1 answer

Looking for an alternative to Telerik's MVC controls

I have a long experience of using a whole host of different tools from Telerik and, I have to say, I love them. But I need an alternative. Why? Well, I want to start an Open Source project. The project will have a number of elements including an MVC…
Stuart Hemming
  • 1,553
  • 2
  • 21
  • 44
7
votes
2 answers

How to use common Layout and styles across multiple Asp.net MVC applications

I have a visual studio solution with multiple telerik MVC4 razor projects having same look and feel. I don't want to have same layout, CSS/styles, images and js files copied in all MVC4 projects. What is the best way to accomplish this re-usability?…
Amit
  • 501
  • 1
  • 9
  • 16
6
votes
2 answers

Multiline cell in Telerik grid (MVC3)

Using Telerik MVC3 grid, C#, .Net 2010; I have a grid in my razor view: @(Html.Telerik().Grid() .Name("Grid") .Columns(columns => { columns.Bound(o => o.Current.Name).Sortable(true).Filterable(false).Width(150); …
berdem
  • 462
  • 6
  • 19
6
votes
2 answers

Telerik().ScriptRegistrar() How to prevent loading jquery libraries?

Script registrar loads jquery.validation.min.js even after Html.Telerik().ScriptRegistrar().jQuery(false) Is there any way to tell it not to do so? Even when I try to load exactly what I need, doing…
iLemming
  • 34,477
  • 60
  • 195
  • 309
6
votes
2 answers

using telerik grid with jquery ui dialog!

in mvc user control called form.ascx, I have a Telerik Grid contained in a div called "details". from a page called edit.aspx i wrote the following:
Nour
  • 5,252
  • 3
  • 41
  • 66
6
votes
1 answer

how to create saveChanges callback function in grid kendo mvc

I'm having some timing issues and was wondering if there is a way for saveChanges to have a callback when it's save is complete?
5
votes
1 answer

how can I change the "get" and "set" on a Model Property?

Currently I have a DateTime property for a model. I am using the telerik MVC framwork but I am using a DateTime property and the editor column for this property is auto-generated so there is no code which controls it in my View or Controller. On…
5
votes
1 answer

Send additional data to Telerik MVC grid

I am using AJAX bound Telerik MVC grid. I am sending data for the grid using a code like the following: return View(new GridModel(...)); I want to be able to send additional data to client in the same action method. For example I need to send a…
Narek Malkhasyan
  • 1,332
  • 1
  • 12
  • 22
5
votes
1 answer

How do I bind data from Telerik ComboBox to my data model

Why won't my Telerik ComboBoxFor bind my value and fill my ComboBox via AJAX? @using (Html.BeginForm()) { @Html.ValidationSummary(true)
@Html.EditorFor(model => model.Name) …
user571874
  • 589
  • 6
  • 25
5
votes
2 answers

How to send an object to the Telerik MVC Grid Ajax Select() Controller Method

I am using the Telerik MVC Grid with Ajax binding, and am having a problem passing an object to the controller to be used to filter data. I am able to pass simple data (string, int), but not a more complex object. For instance, I can to this no…
MattW
  • 12,902
  • 5
  • 38
  • 65
5
votes
3 answers

why should i use telerik radcontrols over visual studio built-in controls?

why should i use telerik radcontrols over visual studio built-in controls. Basically i want to know the pros and cons of telerik controls. I am new in telerik. I really get very less time for learn something new. So is it worthwhile to choose…
Vikash Singh
  • 804
  • 1
  • 10
  • 11
5
votes
1 answer

Custom grid using Telerik pluggin in nopcommerce 2.8

Iam working on nopcommerce2.8 version. I have a problem with telerik plugin implementation to create new grid. Iam implementing a concept where for a product i want to give different price for different customer. So to assign new price for different…
5
votes
1 answer

How to use Kendo Grid Ajax Read event on demand

I have page with DropDownList and Telerik's Kendo UI Grid Control. When first time page is opened DropDownList has no item selected in it. When user selects value in DropDownList only then Grid should make Ajax call to the server and load…
Vlad Bezden
  • 83,883
  • 25
  • 248
  • 179
5
votes
1 answer

Telerik MVC Index out of Range

I'm setting up a mixed ASP.NET MVC / ASP.NET site (based on Kentico, if that matters) and having issues: [ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index] …
ConsultUtah
  • 6,639
  • 3
  • 32
  • 51
1
2
3
66 67