Telerik blogs
  • Release

    Telerik Q1 2011 ASP.NET plans

    It is this time of the year when the teams here at Telerik make their global next year planning, and the Telerik ASP.NET AJAX and MVC teams make no exception. For those of you, dear customers and prospects, who are eager to take a sneak peak at our year 2011 planning and want to know what is cooking for the Q1 release, I give you the official Q1 2011 ASP.NET teams roadmaps: Q1 2011 ASP.NET AJAX Roadmap Highlights: Two new AJAX controls - Ribbon and Month/Year picker New ListView and Scheduler SharePoint 2010 web parts A bunch of enhancements for the existing controls...
    December 11, 2010
  • Web ASP.NET MVC

    Binding to a collection of dynamic objects with Grid Extension for ASP.NET MVC

    Great news everybody! With its latest version and the addition of MVC3 specific build, you can now bind the MVC Grid to a collection of dynamic objects quite easily. Note that we will be using the new Razor view engine for extra fun. Just declare the View’s model to be IEnumerable<dynamic> 1: @using Telerik.Web.Mvc.UI 2: @model IEnumerable<dynamic> 3: @( 4: Html.Telerik().Grid(Model) 5: .Name("Grid") 6: .Columns(columns...
    November 12, 2010
  • Release

    Official Q3 2010 Telerik AJAX and MVC bits

    Once again, all Telerik Developer Productivity divisions joined their efforts to deliver yet another major release spanned across the entire Telerik portfolio (which got expanded with one more product line - our Windows Phone 7 controls suite). Mobilizing and keeping in sync 10+ Telerik product lines to supply builds on a specified date involves tremendous energy and discipline, still we succeeded to do that on time as these enthusiasts did back in year 2006:     The news are already transmitted over the air and will soon reach every distant location on the globe - feel free to share our happiness! You can...
    November 10, 2010
  • Release

    Telerik MVC Extensions Q3 2010 Beta Preview

    We are pleased to proclaim the immediate availability of the Q3 2010 BETA release of Telerik Extensions for ASP.NET MVC. Our MVC suite grows with two new extensions: TimePicker DateTimePicker We also added several major features for the MVC Grid - toolbar template, column header and footer templates and column reordering, and improved its binding mechanism. All this comes together with ASP.NET MVC 3 Beta support, added/improved RTL support and enhanced accessibility for all Telerik MVC Extensions. Check our ONLINE DEMOS and RELEASE NOTES The downloads are now available in your account (in case you have a license for Telerik Premium Collection or Telerik Extensions...
    October 27, 2010
  • Web ASP.NET MVC

    Using nested complex objects with ASP.NET MVC editor templates

    This may be common knowledge but I failed to quickly find the relevant info when it hit me. In short the default editor template generated by ASP.NET MVC 2 ignores any nested complex properties of your model. Here is a short example which demonstrates the case:   Model: public class Customer{ public int ID { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public Address Address { get; set; }} public class Address{ public string Street { get; set; } public string City { get; set; }} Controller: public class HomeController : Controller{ // // GET: /Home/ public ActionResult Index() { return View(new Customer { ...
    September 30, 2010