• Q1 is already behind our back and we took the time right after it to sit down and carefully think about our next steps. We were trying to answer questions like where we want to be in Q2, what the main customer scenarios are, how we can help our customers achieve those scenarios, how we can use our resources in the most efficient way, who we’re targeting, etc. As a result we outlined a comprehensive plan including tons of significant improvements and new features as well as major new initiatives that will take Telerik DevCraft to another level in Q2 2013.
  • I recently started reacquainting myself with the Telerik MVC Extensions, and it seems I had forgotten just how awesome they are! I want to talk about a few of the less known features I find really awesome in the extensions.

    VS Extensions

    Telerik’s MVC extensions come with built in Visual Studio extensions to make project creation, and configuration, a snap.  In addition, the extensions include a variety of project templates to help start new projects: 

    image

     

    What Makes it Awesome

    Instead of forcing me to manually check for updates, the extension proactively alert me to any available updates:

    image

    When opening a project using an older...

  • The chart component for the Telerik Extensions for ASP.NET MVC is a rapidly expanding MVC component. Not only are we adding many new features, but we’re also increasing the available chart types. With the introduction of Q3 2011 we were able to start using two new chart types - Scatter and Scatter Line. Both types allow you to plot points anywhere on your chart area, as long as you provide each point with X and Y values. Let’s take a look at how you can implement these chart types, as well as take use of some new features introduced in...

  • Technorati Tags: ,

    I hit this error today while working with an MVC3 application.  It appeared out of the blue – but don’t they always?  Fortunately, I make a habit of committing my work into SVN every time my tests pass, so I could have just reverted back to my last Revision, but I wanted to know what I did to cause this.

    Much to my demise, the optimistic fixes didn’t work:

    • Restart the debugger several times, because surely that will fix it :-)
    • Close Visual Studio and reopen it.

    Just kidding.  But we do tend to try those don’t we?

    Back on topic,...


  • The Q2 2011 Beta pack of Telerik Extensions for ASP.NET MVC has just been uploaded on telerik.com! As usual, you can find the open source and commercial (paid) version in your Telerik account's > MVC Product Files Download section:
    Open Source Download | Commercial Download.

    New component, new skins

    The Beta release introduces new HTML5-driven MVC charting extension which utilizes SVG/VML for vector graphic drawing. Light-weight and cross-browser component, built from scratch and in perfect harmony with the MVC design pattern paradigm, the chart supports bar/stacked bar series, Ajax binding and exposes basic client API...

  • Recently there have been quite a few questions popping up around our ASP.NET MVC upload component, specifically when working with it in synchronous mode. Although this variation of uploading files is not really too complex when compared to its asynchronous counter-part, I believe some of the confusion stems from the MVC syntax that is used in our online demo. My goal with this blog post is to provide a bit more clarity to what exactly is happening in this demo, mostly taking a look at the MVC syntax.
    Before we get started, open up our Synchronous Upload demo in your favorite...
  • In Part 1 of this series we covered how you can create an MVC (both MVC 2 and MVC 3) web application that is ready to be published to the cloud. Of course we also went through how you can make this application a Telerik application, taking use of our Visual Studio Extensions. What the application actually does is up to you of course, but now that you’ve finished developing everything you want to take it to the next level; you want to deploy!

    Launching to the cloud

    So your project is ready to rock and you’re eager to brag to everyone that...

  • When we pushed out Telerik TV, we ran into an interesting style issue.  We were using output caching on our index page to save the server a little work.  However, sometimes when a user navigated to tv.telerik.com/home it would look like this:

    clip_image001


    This problem would only manifest itself on the production server, and shockingly there were no errors! By looking at the source of the page we quickly realized that neither the StyleSheetRegistrar, nor the ScriptRegistrar were outputting anything at all.  This made it clear that the Render method on the StyleSheetRegistrar / ScriptRegistrar was not firing, or something was causing them...
  • The Telerik Extensions for ASP.NET MVC continue to march triumphantly towards their v1 in the Q1 2010 release. Thanks to your valuable feedback during the past few months, we were able to shape our roadmap and produce the next batch of UI extensions: TreeView, Calendar, DatePicker and a set of 4 Input components - NumericTextBox, CurrencyTextBox, PercentTextBox and IntegerTextBox. All of them are lightweight, semantically rendered, embracing the ASP.NET MVC principles and designed to deliver maximum performance to your MVC applications.

    The flagship component, Grid for ASP.NET MVC, matures more and more with its latest enhancements. You can now achieve multi-level grouping,...

  • Using OpenAccess Forward Mapping really allows you to focus on building a strong model, rather than getting caught up in the persistence details, and this can expedite development time dramatically. Every developer I know could use a little more time to focus on more important things :) Before we can use the OpenAccess Forward Mapping Wizard, we need to create a model for our application.  After we have a solid model, we can run the wizard, and it will create the database for us! Awesome!

     

    Getting Started

    The first thing that I do is create an abstract base class that all business...