Tags
#sp #SP2010NL 3D AJAX ASP.Net CAML Cloud CodePlex CSS Document Sets Dynamics CRM FAST 2010 Forms Based Authentication InfoPath JavaScript jQuery Managed Metadata MOSS Object Model Search SharePoint Designer 2010 SharePoint Profile System Silverlight soccerino SP2010 Visual Studio 2010 Word Automation Workflow XSLTArchives
-
RSS Links
Tag Archives: AJAX
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 [...]
Also tagged ASP.Net, jQuery, MOSS 3 Comments
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 [...]
Also tagged JavaScript, jQuery 1 Comment
Adding AJAX.Net to your MOSS WebParts
I know there are loads of posts on this subject already, but in this one I’ll try to give some useful tips on this subject. First, you need to add AJAX.Net entries to your web.config of the MOSS site. A very easy way to do this is by using the Ajaxify stsadm extensions. Simply add the included [...]
Also tagged ASP.Net, MOSS Leave a comment
Building an AJAX web part with jQuery (Part 3)