Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Search
Archives
Archives
December 2012
(1)
August 2012
(1)
May 2012
(2)
April 2012
(1)
November 2011
(1)
September 2011
(1)
August 2011
(1)
March 2011
(1)
February 2011
(1)
January 2011
(2)
September 2010
(1)
August 2010
(2)
July 2010
(1)
May 2010
(1)
April 2010
(4)
March 2010
(4)
January 2010
(1)
November 2009
(1)
September 2009
(4)
August 2009
(3)
June 2009
(2)
May 2009
(3)
March 2009
(6)
February 2009
(1)
December 2008
(3)
October 2008
(5)
September 2008
(3)
August 2008
(9)
July 2008
(6)
June 2008
(2)
January 2008
(1)
November 2007
(1)
October 2007
(3)
September 2007
(4)
August 2007
(1)
June 2007
(2)
May 2007
(3)
April 2007
(4)
March 2007
(6)
February 2007
(8)
January 2007
(2)
December 2006
(1)
Tags
AJAX
AjaxControlToolkit
Animation
Announcement
Astoria
AutoCompleteExtender
Client
Components
DataServiceCollection
DataServiceContext
Debugging
Demo
Documentation
Explorer
Friendly Feeds
JavaScript
Nontech
OData
Personal
Prototype
Sample
Server Driven Paging
Silverlight
Superhero dreams
Windows Phone
Common Tasks
Blog Home
Email Blog Author
About
RSS for posts
RSS for comments
Tagged Content List
Blog Post:
Ajax preview 2 : Declarative Instantiation of AjaxControlToolkit Controls
Phani Raju MSFT
Today ,we will talk about using the Declarative Syntax to instantiate certain AjaxControlToolkit Behaviors . Step 0: Figure out which are the script files needed for the Behavior to work and include the appropriate Script references in your page . For the PopupControlBehavior...
on
12 Sep 2008
Blog Post:
Documentation for the AjaxControlToolkit
Phani Raju MSFT
Ready for some documentation for the ATK controls ? To skip my journey to create this , download the Documentation ( in CHM form) here : AjaxControlToolkit Docs Step 1 : Using AjaxDoc to generate the Reflection.org file required by Sandcastle 1.0) Download AjaxDoc here . 1.1...
on
27 Aug 2008
Blog Post:
Happy Birthday to Me !!!
Phani Raju MSFT
Hello all , Today I grow a year older , I am now all of 26 !!! As return gifts to everyone, I am giving out a demo application that encompasses most of my knowledge about the AjaxControlToolkit Animation Extender. Here is a list of the Animations that are demo'd . Basic Animations Fade ReSize Length...
on
17 Sep 2007
Blog Post:
Expand Accordion Panes On Mouse Over Header
Phani Raju MSFT
This is a common requirement I see among users of the accordion , How do I Open Accordion Panes OnMouseOver of the header and Not on header Click ? The answer is pretty simple . Lets walk through this : a) Setup your Accordion < ajaxToolkit:Accordion ID ="Accordion1" runat ="server" ContentCssClass...
on
10 Sep 2007
Blog Post:
How to : Re-use Animation Extenders in a page
Phani Raju MSFT
Download Sample Code : while working with the AnimationExtender on an ASPX Page ,One would run into a scenario wherein you would need to associate the same animation with multiple Elements on the page. Some Examples are : Associate an Animation with the rows of a GridView. Associate an Animation with...
on
15 Aug 2007
Blog Post:
How to : Perform Operations on all instances of a Ajax Control Extender on a page
Phani Raju MSFT
Consider a scenario wherein you have a lot of control Extenders on a page and you want to conduct operations on all instances Specific Extender or specific instances of an extender. We all know that we can reference certain instances of an Extender by using its BehaviorID and the $find function. Now...
on
20 Jun 2007
Blog Post:
Scripting Animations from the Ms Ajax AnimationExtender
Phani Raju MSFT
An ignored / unknown / very useful feature of the animation Framework is that it allows you to control the animation as its playing. You can Play, Pause , Resume , Stop and Quit an Animation Instance by using appropriate methods in JavaScript. Setting up the Animation The Animation we will be playing...
on
31 May 2007
Blog Post:
Some Useful Links from the ASP.NET Ajax Forums
Phani Raju MSFT
Hi , Over the past couple of months, I have been actively contributing to the Asp.net Ajax forums and have come across some very weird and challenging problems to solve.Anyone who's been at the forums can tell, the community is VERY Active and helpful when it comes to helping out your fellow developer...
on
10 May 2007
Blog Post:
HowTo : Change Visible Tab Using JavaScript in the MS AJAX TabControl
Phani Raju MSFT
I have seen this in the forums a lot .. "How do I change the Visible Tab in the MS AJAX TabControl on the Client-Side using Javascript ?" Well, I have posted it several times and I think Its time I'd rather point people to a link than write the same piece again and again :-). So, here you go ..... 1...
on
16 Apr 2007
Blog Post:
MS AJAX AnimationExtender : How Many Ways Do I Play thee ? ( Updated )
Phani Raju MSFT
We will discuss the various ways in which one can animate a visual element using the MS AJAX Animation. The Example would be to resize a div named "queryReply" to have a height of 100px and width of 200px On Click of the Div . 1) The Simplest Way , Markup < ajaxToolkit:AnimationExtender runat ="server...
on
13 Apr 2007
Blog Post:
Expirements with Ms AJAX 1 : Plot a Path and follow it
Phani Raju MSFT
While working on some documentation and presentations for MS AJAX Animation ( wait for it , its gonna rock !! ) , I made what you see in the demo video. Its basic premise is this : Allow the User to plot points on a plane Then trigger an animation that goes over all the points and stops Why do this ...
on
26 Mar 2007
Blog Post:
How To : Using MS AJAX CaseAnimation in your applications
Phani Raju MSFT
I hang out at the forums a lot .( http://forums.asp.net/1022/ShowForum.aspx ), I go by phanatic. Looking at a couple of threads let me know that there are no examples of the caseAnimation anywhere :-( Ok, so I built a simple sample which illustrates the use of a CaseAnimation . See demo here So , here...
on
21 Mar 2007
Blog Post:
HowTo : Sys.Preview.UI.Effects.FadeAnimation
Phani Raju MSFT
The Sys.Preview.UI.Effects Namespace contains a couple of animations that one can use in their applications. Here , we will talk about how to use the FadeAnimation thats present in the Sys.Preview.UI.Effects NameSpace. The Scripts that are to be included are : MicrosoftAjax.js PreviewScript.js PreviewGlitz...
on
15 Mar 2007
Blog Post:
Using MS Ajax Animations From the Client-Side
Phani Raju MSFT
We will talk about how to use the MS-Ajax Animation Framework without any server-side code. The sample completely illustrates how to instantiate and use the Animation Controls by including the proper script references. 1) Include the following scripts in your HTML Page MicrosoftAjax.js (...
on
12 Mar 2007
Blog Post:
Show and Hide ModalPopupExtender from JavaScript
Phani Raju MSFT
1) Assign a BehaviourID to the ModalPopupExtender using the BehaviourID attribute. BehaviorID = "ModalBehaviour" 2) Use the $find method to get a handle to the Modal Popup Behaviour . $find ( "ModalBehaviour" ). 3) Call your hide and show methods on the acquired handle....
on
20 Feb 2007
Blog Post:
Change ServiceMethods and Web Service for the AutoCompleteExtender From Client Side
Phani Raju MSFT
This is quite a common requirement and guess the Docs are not really clear as to how you can achieve this . Lemme see how I can help You want to change the Webmethod that the AutoComplete Extender Talks to from the Client Side. You want to change the WebService that the AutoComplete Extender...
on
15 Feb 2007
Blog Post:
Implementing Image Zoom using MS Ajax Slider Control
Phani Raju MSFT
The MS Ajax Control Toolkit provides a lot of cool controls that we can use to implement nifty effects in our applications. One of the controls we are gonna play with today is the Ajax Slider Control. The Slider Control Provides a way for the user to measure arbitrary values and set them using...
on
14 Feb 2007
Blog Post:
Customizing the MS Ajax AutoCompleteExtender To Render Images Instead Of Text
Phani Raju MSFT
We all know about the AutoComplete Extender from MS AJAX. It looks like this ..... I want to customize the Auto Complete behaviour to render images on the client side rather than the text nodes . My Server Side WebService returns an array of image URLs. I want to change the way the Results are rendered...
on
10 Feb 2007
Blog Post:
Extending the PhotoGrid to allow Xml DataBinding using JavaScript Enumerations
Phani Raju MSFT
If you remember one of my previous posts about the PhotoGrid Control , we talked about the control binding to JSON data . Today , we talk about using Enumerations in Javascript to allow the PhotoGrid to bind to multiple Data Source Types. Well, lets get going then.... Constructing the Enumeration /*...
on
3 Feb 2007
Blog Post:
Animating Multiple Controls on an Event using Microsoft Ajax AnimationExtender Controls
Phani Raju MSFT
We can assocaite multiple controls on a single event on a control firing by using the "AnimationTarget" attribute of the Animation class. lets take the example of a strip of thumbnails which should move upon click on the first thumbnail. See Demo here We have four thumbnails , arranged ina row , see...
on
3 Feb 2007
Blog Post:
Using the Prototype Model with Microsoft AJAX
Phani Raju MSFT
Microsoft Ajax allows you to extend your javaScript Programming framework so that you can emulate OOP practices with Javascript . A SImple Example is Here The following is a list of stuff you can Use in javascript with Microsoft Ajax Extensions to javascript Classes Namespaces Inheritance Interfaces...
on
1 Feb 2007
Blog Post:
Animation Control , Adding Cool Animations in your application, Scenario 2
Phani Raju MSFT
Assigning Animations to Client-Side Controls If you need to assign Animation Behaviour to any Client-Side Controls using the AjaxControlToolKit's Animation Extender Control , you gotta Explicitly create the AnimationExtender Control on the Client side using the $create function $create's Documentation...
on
20 Jan 2007
Blog Post:
Animation Control , Adding Cool Animations in your application, Scenario 1
Phani Raju MSFT
See Demo here 1) Register the AjaxControlToolkit in your page <%@ Register Assembly= "AjaxControlToolkit" Namespace= "AjaxControlToolkit" TagPrefix= "cc1" %> 2) Add a Script Manager 1: <!-- Mandatory Script Manager Control--> 2: <asp:ScriptManager ID= "ScriptManager1" runat...
on
20 Jan 2007
Blog Post:
Building a Simple Client Callback to YouTube with Atlas
Phani Raju MSFT
We will talk about how we can use Atlas to talk to YouTube using the REST protocol . 1) Download Visual Web Developer , Go Here 2) Download Atlas , Go Here 3) Get an Application Developer ID at Youtube . Go Here After you are done running around the world collecting tools , you should be all set to take...
on
1 Dec 2006
Page 1 of 1 (24 items)