jQuery to ship with ASP.NET MVC and Visual Studio September 28, '08 Comments [60] Posted in ASP.NET | ASP.NET MVC | Javascript | Microsoft Sponsored By I've done a series of four podcasts dedicated to JavaScript over the last month. Why? Because of this rockin' sweet announcement: Microsoft is going to make jQuery part of the official dev platform. JQuery will come with Visual Studio in the long term, and in the short term it'll ship with ASP.NET MVC. We'll also ship a version includes Intellisense in Visual Studio. The Announcement Blog Posts ScottGu on the jQuery/Microsoft goodness John Resig on the jQuery/Microsoft announcement Bertrand Le Roy on jQuery shipping with VS This is cool because we're using jQuery just as it is. It's Open Source, and we'll use it and ship it via its MIT license, unchanged. If there's changes we want, we'll submit a patch just like anyone else. JQuery will also have full support from PSS (Product Support Services) like any other Microsoft product, starting later this year. Folks have said Microsoft would never include Open Source in the platform, I'm hoping this move is representative of a bright future. jQuery Intellisense Visual Studio 2008 has very nice JavaScript intellisense support that can be made richer by the inclusion of comments for methods in 3rd party libraries. Today you can search the web and find intellisense-enabled jQuery files hacked together by the community, but we intend to offer official support for intellisense in jQuery soon. JQuery is really complimentary to MS-Ajax. For example, we had been talking about writing CSS-Selector support, but figured, jQuery does it really well, why not just use it? JavaScript Libraries Play Well With Others I wanted to put together a little demo application that used jQuery to spice up a talk I've given on ADO.NET Data Services. The app would retrieve some data from a Bikes database, and would have some radio buttons to change the color queried. The whole application is a single static page. There's no code-behind and the only server-side work is the data retrieval from SQL. However, the concepts could be applied to ASP.NET WebForms or ASP.NE T MVC. Here's a one page app using: ADO.NET Data Services and it's JavaScript Client Library ASP.NET AJAX ASP.NET AJAX Client Templating (Preview) jQuery 1.2.6 It looks like this: Here's what's going on underneath. First, I'm retrieving data from SQL Server and I need it in JSON format. I'm using the AJAX Client Library for ADO.NET Data Services to make a REST (GET) query to the back-end. To start with I'll just get the data...I include "datatable.js" as a client-side script and use Sys.Data.DataService() to make an async query. In JavaScript you can tell it's a Microsoft type if it's got "Sys." front of it. All the client support for ADO.NET Data Services is in datatable.js. I'll be getting back dynamically created JSON objects that look just like my server-side data. In the query I'm asking for the top 5 results given a color. BTW, the first line of LoadBikes() is a little JavaScript syntax that says "if q isn't there, then make a q that equals "Red." <script type="text/javascript" src="Scripts/DataService.js"></script> <script type="text/javascript"> var bikes; Sys.Application.add_init(function() { LoadBikes(); }); function LoadBikes(q) { q = q || "Red"; var svc = new Sys.Data.DataService("bikes.svc"); svc.query("/Products?$filter=Color eq '" + q + " '&$top=5", OnProductsLoaded); }... When I get back the results from the asynchronous query call, I could use string concatenation with the ASP.NET AJAX Sys.StringBuilder type to build HTML on the fly like this: var html = new Sys.StringBuilder("<ul>");for (var i = 0; i < result.length; i++){ html.append("<li><div class=\"bikerow\">"); html.append("<img src=\"bikes.svc/Products(" + result[i].ProductID + ")/Photo/$value\">" + result[i].Name + " " + result[i].ListPrice); html.append("</div></li>");}html.append("</ul>");$get("tbl").innerHTML = html.toString(); There's MANY ways to get the exact same results in JavaScript when you introduce different libraries. There's tradeoff's between size, speed, maintainability, and your happiness. It's nice to pick and choose. Rather than using StringBuilder, I'll use the new (preview) ASP.NET AJAX 4.0 Client Template stuff from BLR, Dave Reed, Boris Rivers-Moore and Nghi Nguyen. This is more declarative and easy to maintain way to accomplish the same thing. <div id="bikes" class="sys-template"> <ul> <li> <div class="bikerow"> <img sys:src="{{'bikes.svc/Products(' + ProductID + ')/Photo/$value'}}"/> {{Name + ' ' + ListPrice}} </div> </li> </ul></div> This is a declaration of what I want the table to look like with {{ binding expressions }} in curly braces. The img src= is an ADO.NET Data Services HREF to a product image in the database like "/bikes.svc/Products(740)/Photo/$value" that returns an image directly. I'll add ASP.NET AJAX's JavaScript library along with the Preview Templates script from CodePlex: <script type="text/javascript" src="Scripts/MicrosoftAjax.debug.js"></script><script type="text/javascript" src="Scripts/MicrosoftAjaxTemplates.debug.js"></script> Then, when things are initialized, I'll $get() that template and make a Sys.UI.DataView and store it in a variable called "bikes" and when asynchronous call returns, I'll take the array of data from result and apply it to the DataView. <script type="text/javascript"> var bikes; Sys.Application.add_init(function() { bikes = $create(Sys.UI.DataView, {}, {}, {}, $get("bikes")); LoadBikes(); });... function OnUsersLoaded(result){ bikes.set_data(result); ... Now, I'll start leaning heavily on the jQuery library to change the background colors of just the even-numbered items in my list. I'll also add 100ms animation that draws a border and increases the font size of the item the mouse is over. Notice the "chaining" of the functions as I modify the div. Each method returns the jQuery object so you can increase fluency with chaining as much as you like. I'll also use jQuery to easily setup a group of click events on the radio buttons. The complete hacked-together code is this: <html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>Friggin' Sweet</title> <link href="styles.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="Scripts/MicrosoftAjax.debug.js"></script> <script type="text/javascript" src="Scripts/MicrosoftAjaxTemplates.debug.js"></script> <script type="text/javascript" src="Scripts/DataService.js"></script> <script type="text/javascript" src="Scripts/jquery-1.2.6-intellisense.js"></script> <script type="text/javascript" src="Scripts/DataService.js"></script> <script type="text/javascript"> var bikes; Sys.Application.add_init(function() { bikes = $create(Sys.UI.DataView, {}, {}, {}, $get("bikes")); $(".colorfilter").click(function(e) { LoadBikes($(this).val()); }); LoadBikes(); }); function LoadBikes(q) { q = q || "Red"; var svc = new Sys.Data.DataService("bikes.svc"); svc.query("/Products?$filter=Color eq '" + q + " '&$top=5", OnProductsLoaded); } function OnProductsLoaded(result) { bikes.set_data(result); $("ul li:even").css("background-color", "lightyellow"); $("ul li").css("width", "450px").css("font-size", "12px"); $("div.bikerow").mouseover(function(e) { $(this).animate({ fontSize: "18px", border: "2px solid black" }, 100); }).mouseout(function(e) { $(this).animate({ fontSize: "12px", border: "0px" }, 100); }); } Sys.Application.initialize(); </script></head><body xmlns:sys="javascript:Sys"> <form id="form1" runat="server"> <input type="radio" class="colorfilter" name="color" value="Red" />Red <input type="radio" class="colorfilter" name="color" value="Silver" />Silver <input type="radio" class="colorfilter" name="color" value="White" />White <input type="radio" class="colorfilter" name="color" value="Multi" />Multi <input type="radio" class="colorfilter" name="color" value="Black" />Black <div> <div id="tbl"> </div> <div id="bikes" class="sys-template"> <ul> <li> <div class="bikerow"> <img sys:src="{{'bikes.svc/Products(' + ProductID + ')/Photo/$value'}}" /> {{Name + ' ' + ListPrice}} </div> </li> </ul> </div> </div> </form></body></html> And it looks like this. Notice that I've got FireBug open and you can see three AJAX calls via ADO.NET Data Services with different queries. I'm hovering the mouse over the second bike, so its font is larger it has a border. All of the scripts getting along happily. My code clearly sloppy, but this is a good example of how jQuery provides functionality that the Microsoft libraries don't. Things are better when the libraries are used together. JQuery complements ASP.NET, ASP.NET AJAX and ASP.NET MVC nicely and jQuery already has a large following within the .NET community. That's why we're going to ship, support and promote jQuery in ASP.NET, ASP.NET MVC and Visual Studio going forward. This was a simplistic example and I'm sure you've got better ideas, so I'd encourage you to go around the Net and get involved in the dynamic jQuery community. If you've used jQuery on an ASP.NET site, sound off in the comments. JQuery Resources jQuery - Download Plugins jQuery UI About the jQuery Team and Contributors John Resig's Blog The jQuery Blog jQuery's Extensive Documentation Hanselminutes JavaScript Podcast Series JavaScript gets Faster: Brendan Eich, CTO of Mozilla Corporation and Creator of JavaScript Hanselminutes Podcasts 128 and 129 - Ajax with Scott Cate and JavaScript with Bertrand Le Roy Hanselminutes Podcast 126 - Chat with John Resig, Creator of jQuery Technorati Tags: JavaScript,jQuery,MS-AJAX,Microsoft,AJAX,ASP.NET * Thanks to Pablo Castro for his Bike database and ongoing help. Big thanks to Scott Koon for helping me debug my demo at 2am this morning using CrossLoop while kindly not asking what I was working on. Also thanks indirectly to Rick Strahl for his excellent .NET (and often jQuery) blog. « The Weekly Source Code 34 - The Rise of ... | Blog Home | October 6th - Seattle/Redmond/Bellevue N... » About Scott Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author. About Newsletter Sponsored By Hosting By