ASP.Net AJAX Controls for MVC developers

I’ve been spending a bit of time over the past month looking into ALL of Asp.Net, not just MVC or SignalR or WebAPI.  I’ve even gone back and spent some time with good old WebForms.  When we think back to ASP.Net webforms, many of us cringe and get upset when we think about ViewState, ClientId naming, and PostBack processing.  However, I think there are some really good things in WebForms that many of us need to be reminded of.  Let’s take a look at a quick sample, comparing a “modern” MVC AJAX approach to a web page being built with the tried and true WebForms approach.

Our Data Sample

To start, I’m going to create an MVC4 project in Visual Studio and add the EntityFramework.SqlServerCompact nuget package.  With this in place, I created a Product object and a simple data context using Entity Framework Code First:

    public class Product
    {

        public int ProductId { get; set; }
        public string Name { get; set; }
        public string Manufacturer { get; set; }
        public decimal Price { get; set; }

    }

    public class ProductContext : DbContext
    {
        public DbSet Products { get; set; }
    }

    public class ProductDbInitializer : DropCreateDatabaseAlways
    {

        protected override void Seed(ProductContext context)
        {

            var checkers = new Product()
            {
                ProductId = 1,
                Name = "Checkers",
                Manufacturer = "Milton Bradley",
                Price = 5.99M
            };
            context.Products.Add(checkers);

            var chess = new Product
            {
                ProductId = 2,
                Name = "Chess",
                Manufacturer = "Parker Brothers",
                Price = 8.99M
            };
            context.Products.Add(chess);

            var backgammon = new Product
            {
                ProductId = 3,
                Name = "Backgammon",
                Manufacturer = "Hasbro",
                Price = 12.99M
            };
            context.Products.Add(backgammon);

            var connectFour = new Product
            {
                ProductId = 4,
                Name = "Connect Four",
                Manufacturer = "Milton Bradley",
                Price = 7.49M
            };
            context.Products.Add(connectFour);

            base.Seed(context);
        }

    }

Note the DbInitializer class – this will create some seed data for us to display in this sample.  

The ‘standard’ MVC approach

Typically, an MVC view will output a grid of data with a simple for-loop over some data.  With the razor-formatting engine, this becomes a trivial piece of work in our view:

        @foreach (var product in Model)
        {
            
                @Html.ActionLink(product.Name, "Details", new { id = product.ProductId })
                @product.Manufacturer
                @product.Price.ToString("$0.00")
            
        }

This is a simple approach that dumps the data to screen.  For a prototype it may be enough, but in today’s web, we want something more dynamic.  We’d prefer an AJAX solution that allows us to search, sort and flip through pages of content.  

If you’re like me, you went looking for a jQuery plugin to do some of this work for you.  There are a number of great grid controls available like KendoUI or jqGrid.  I first used the jqGrid and ran into configuration after configuration that was undocumented that I needed to test and ensure behaved the way I needed it to.  Then I had to chase down a handful of additional methods I needed to add to my MVC controllers to perform the search and sort operations.  After that, I had to update those controller methods to handle paging.  All in all, I ended up adding more server-side methods in my MVC controller and writing client-side javascript wrapper methods for the grid control to simplify my data access needs.  I could move my data searching and sorting methods on the server-side into an ApiController, but my problem remains the same: I’m writing a lot of code to massage the data in the grid to fit my user’s needs.

The WebForms AJAX way

If we go back to the WebForms technique using the standard gridview control, we could directly databind to our Products DbSet in our context.  Our construction steps would be as simple as this:

    1. Drag a LinqDataSource onto the webform designer surface
    2. Configure the LinqDataSource to connect to our ProductContext and use the Products dataset
    3. Drag a GridView onto the webform designer surface
    4. Connect the GridView to the LinqDataSource
    5. Configure the GridView to enable paging and sorting

    Done.. I’ve written no code, and using only the designer tools I have a functional grid. However, this doesn’t have the cool filtering and AJAX features like our jqGrid.  We can theme the GridView easily, but its still not quite… polished.  We would need to add additional controls to the page and additional code to connect some filter controls to the grid.

    Enter a commercial grid

    A commercial grid control will take our capabilities on the WebForm even further, with even less work.  Let’s consider the Telerik ASP.Net Grid… With Telerik’s grid, we need to configure our web project to handle the Telerik controls by adding some entries into web.config.  These can be copied directly from another Telerik ASP.Net controls  project.   Once those settings are in place, adding and configuring our grid is as simple as:

    1. Drag a LinqDataSource onto the webform designer surface
    2. Configure the LinqDataSource to connect to our ProductContext and use the Products dataset
    3. Drag a RadGrid onto designer surface
    4. From the RadGrid smart-tag, click the linkbuttons to add the RadScriptManager and RadAJAXManager
    5. From the RadGrid smart-tag click the checkboxes to turn on the sorting, filtering, and paging functionality as desired
    6. From the RadAJAXManager smart-tag, click the checkboxes to enable the RadGrid as an AJAX trigger and enable the RadGrid as an AJAX target

    Without any coding, using just the designer tools, I’ve completed the task again.  We now have a grid that will sort, page, and filter on AJAX queries back to the website. Additionally, we can turn on other cool functionality that is built in to the control like “Column Grouping”, “Export to Excel” or “Export to PDF”.  Once again, no coding is needed to enable this functionality.  The volume of features in these commercial controls is amazing, and they really are worth it when you look at the time it would take you to build each of these features.  There are significant templating and coding options available if you want to turn this Telerik grid into something more unique for your customer.

    Summary

    The amount of hand coding and mix of client and server side coding to make an MVC solution work just takes too much of my valuable development time.  I can put together a great looking webpage very quickly using a WebForms approach.  Finally, I can make that WebForm really shine if I use a set of controls from a vendor that are really polished.  Asp.Net developers, don’t limit your projects to just MVC or WebForms.  Try mixing and matching capabilities to make your development tasks easier.

    kick it on DotNetKicks.com

    Relaunch!

    I’ve taken the plunge…  After years of just tinkering with a blog on Tumblr, I have finally committed and purchased this space for all of my blogging needs.

    I’m still tinkering with the look and feel, but I think this is pretty close to where I need it to be.

    The old tumblr posts are here, and you should be able to search the old content.  It does not appear that SquareSpace has indexed my old tags and dates for those widgets in the vertical toolbar.  I’ll contact support and see if we can work that out.

    Look for a LOT more from me on these pages.  I have a handful of development series posts regarding Asp.Net that I’m writing and will be sharing here.

    Stay Tuned!

    Fall 2012 Philly Code Camp Wrapup

    I’m a bit late on this, but I wanted to document my experience at the Philly.Net Fall 2012 Code Camp.  This is a wrap-up post that I need to write more often, as these events are awesome ways to get connected and inspired from some of the developers in the community.

    This year, I was caught between jobs for the Code Camp event.  This was the first time that I introduced myself as an “Independent Software Developer”.  I’m not sure how I felt about that.. but not something I need to worry about any longer.

    My presentation this fall was “An Introduction to SignalR”.  I have posted my sample code and slidedeck on GitHub at:  https://github.com/csharpfritz/IntroSignalR 

    This talk covered the concepts of what the “Realtime web” is and I ran through Damian Edwards excellently simple “Move Shape” demo.  This demo, for those who haven’t seen it, shows how to transmit information from one browser to another through the webserver with no interaction in the other browser.  During the talk, we did a deep-dive on the network interaction between browser and server as well as discussed how SignalR is designed to failover network connectivity based on client capabilities.

    I showed a simple console application that could be configured with the SignalR  client library to listen for events from an Asp.Net webserver.  This strategy allows the client to stay connected over the network through network port 80, and thus require no changes to firewalls to maintain connectivity.

    Finally, we wrapped up the session by bringing up the fun MMO sample game “ShootR” in our browsers and showing that realitime communications on the web can even power an “Asteroids-like” game.  You can find ShootR at:  http://shootr.signar.net

    If there’s some interest, I’ll record a screencast covering this topic and post it here in the weeks ahead.  I will probably write up the content of the talk as a ‘How-To post’ in the next week or so, after I move the blog to its new home.

    Finally, I am currently putting together a mid-level SignalR talk that will discuss using SignalR with WebForms and vendor’s control sets.  I hope to give this talk in the Spring at a user group near you.

    Future is set: Telerik Asp.Net AJAX!

    After last week’s events, the floodgates of opportunity opened, and I evaluated my options very closely.

    It is with great pride that I announce:  On December 3rd I will be a Developer Evangelist with the Asp.Net AJAX product team at Telerik!

    I’ve been a (quiet) fan of Telerik tools for the past two years.  It’s hard to miss the advertisements on the trade magazines, podcasts, and websites that I consume regularly.  After reviewing a handful of Telerik tools, they grew on me.  I’ve used JustCode for the last few months and find it to be a valuable asset in my daily coding tasks.  I’ve been using the AJAX Controls in a handful of prototypes and really enjoy the flexibility offered to me without having to focus on UI work.  It’s a good fit for me, as I believe I can share my infectious enthusiasm for this technology with others and bring great value to Telerik.

    I’m going to still be the wise-cracking passionate Asp.Net developer.  I’m not going to turn into the Sham-Wow guy for Telerik overnight… but I will be using the Telerik tools in everything that I do.  

    Those of you who have worked with me know: I am a very loyal and passionate employee who goes out of his way to ensure the success of my employer and my customers.  This is not a position I take lightly, and I feel that this attitude matches the role of Evangelist perfectly.  As an evangelist, I’ll be the technical conduit between sales, customer service, marketing, and the dev team.  I’m going to help take an award winning product and make it even better.

    A colleague at my previous employer, after watching me coach a junior developer in a coding technique of some sort commented to me: “Jeff, you’re such a good trainer – you should do this more often.”  Little did I know at that time, just how right she was.  I presented at the Philly Code Camp last weekend (wrapup post to come), and that teaching buzz grabbed me after my session on SignalR, and it was then that I knew that I was so right for this position.

    Over the next few weeks, you’ll see my blog ramp up.  I’ll be migrating to a better engine, a better layout, and LOTS more content.  You’ll see my twitter activity ramp up, my StackOverflow interactions ramp up, and most of all: you’ll start to find more video content from me.

    The best part about this:  I will not be limited to my budget, or INETA’s budget in my travels to present at your event.  We’ll soon see what my availability looks like, but I’ll be doing a lot more travelling to some places that would NEVER be on my current travel itinerary.  I’m already getting my passport renewed so that I can depart from my friendly confines of the Northeastern United States to bring the good word of Asp.Net and Telerik to conferences and User Groups around the world.

    My family and I are positively thrilled about this change, and I know that my teammates at Telerik are VERY eager for me to get started.  Stay tuned friends, because you’re going to get a lot more great content from yours truly!

    Time for a change

    The story is finally out:  After 7 years, I have been given my release by my former employer.  

    I have no regrets about my time with that organization or how it ended.  There are many very talented individuals writing, testing, and analyzing some amazing code there. I had a great time working in their environment, and learned a lot from the size, scale, and agility of the development team’s practices.

    I am actively speaking to some organizations about roles on their teams.  It is an exciting time for me, as one of these companies has shown significant interest… and I am positively thrilled to be considered for a position in their awesome organization.

    In the short-term, I have a project or two that is occupying my time.  Additionally, I can now resume working on the qUnitMetro project, and I see a handful of feature requests out there begging to be answered.  They shall be handled in the weeks ahead.

    I can also begin working on some long overdue blog articles as well as other publications that I am interested in.  There are a handful of screencasts inside me that are begging to be published… and I want to re-engage that process.

    You’ll probably see a bit more of me in the next few weeks on Twitter and the blog discussing Asp.Net techniques, technologies, and c-sharp development practices.  I look forward to getting more involved with the community, and seeing where my future leads me.

    You can find my details on LinkedIn at: http://www.linkedin.com/in/jeffreytfritz and you can contact me at: jeff@csharpfritz.com

    It’s almost time for lunch… let’s eat!