Working on jQuery4mvc preview 4, one of the first things I ofcourse wanted to do was to replace the ASP.NET Ajax library that’s used by the AjaxHelper.
Unfortunately the AjaxHelper itself is sealed, so atm we can’t (easily) change how the AjaxHelper generates its links. So, as an alternative, I created a javascript library that uses the same methodnames as the MicrosoftMvcAjax version.
Though at first I was upset that AjaxHelper wasn’t opened up, this javascript-only solution makes it very easy to use. All you have to do is
- place the latest jQuery version in your Content folder;
- place my javascript file in your Content folder;
- add references in your views (or masterpage ofcourse) to these 2 files instead of referencing the MicrosoftMvcAjax.js and MicrosoftAjax.js file.
If you haven’t played with the AjaxHelper yet, take a look at Scott Hanselman’s post on Using Ajax and Ajax.Form
This jQuery version also has a little extra: browser-history support for your ajax requests
Now, go download the js file and play!
Thank you for this. It works like a charm!
I think you and this guy should put your heads together, he’s done some amazing stuff, he’s nearly to the point where jquery will be able to dynamically create forms that are ajax enabled, sort of a client side on the fly scaffolding…
http://blog.goeran.no/PermaLink,guid,e55bfb55-ac10-48db-98a4-d28343e0f98a.aspx
Hi Chris
Nice work! Tim is on to something, we working together. I’ve been super busy since I posted my last jQuery post, and I haven’t had any time to open up a OS project on CodePlex as you have.
I hope we can somehow join the projects and work together, since we solve many of the same problems around asp mvc and Ajax. Please contact me and let me know what you think about that.
Have nice day!
Gøran
The method signatures seem to have changed in Preview 5. Any plans to update this script?
@Nate: you can expect an updated version somewhere this week.
Hi Chris, I’m also looking forward to the updated version. They implemented a real breaking change by using the Sys.UI libraries.