Tags
archives
- March 2010 (1)
- February 2010 (2)
- January 2010 (5)
- December 2009 (1)
- November 2009 (2)
- October 2009 (1)
- September 2009 (2)
- July 2009 (1)
- May 2009 (2)
- April 2009 (1)
- March 2009 (5)
- February 2009 (7)
- January 2009 (1)
Monthly Archives: March 2009
Building an AJAX web part with jQuery (Part 2)
In part 1 of this series I explained a bit about the context and goal of creating an AJAX web part without using ASP.Net AJAX. I also showed the steps necessary for creating services that return data in the JSON format. In this post I’ll show you how to call these services from JavaScript and insert the data in [...]
Building an AJAX web part with jQuery (Part 1)
In this series of posts I will describe how I build a web part full of AJAX functionality using jQuery and some plugins for jQuery.
Why?
ASP.Net AJAX is quite hard to implement using only code. Besides that, having multiple updatepanels and multiple triggers outside of these updatepanels, can complicate stuff very quickly. So I decided to see how much [...]
Tagged AJAX, ASP.Net, jQuery, MOSS 3 Comments
jQuery performance optimization tips
Sometimes all the cool effects and functionality you’ve build on top of jQuery turn out to be a bit sluggish. Here are a few tips to optimize performance.
1) Use jQuery 1.3+. This one utilizes the new Sizzle selector engine which is much faster then the selector engine in the jQuery versions before that.
2) Make your selectors as [...]
Using a template plugin for jQuery to parse JSON data
When you’re building an AJAX control in .Net there a a few possibilities. One of them is using AJAX.Net updatepanels. This saves you from writing tedious javascript code to refresh parts of you page. With the arrival of javascript libraries such as jQuery it’s much easier to create the AJAX functionality you want with javascript. However, you still have [...]
Tagged AJAX, JavaScript, jQuery 1 Comment
Building an AJAX web part with jQuery (Part 3)