Sign In
MSDN Blogs
Microsoft Blog Images
More ...
February, 2007
Common Tasks
Blog Home
Email Blog Author
About
RSS for comments
RSS for posts
Atom
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Relevant Links
Profiles
My LinkedIn profile
LinkedIn Profile for Phani Raj
My MSDN Forums profile
MSDN Forums profile for PhaniRaj
My Github profile
Github profile for PhaniRaj
My StackOverflow profile
StackOverflow profile for Phani Raj
Useful links for OData Server applications
Debugging WCF Data Services
HTTP 400 Bad Request on Posting Large Payloads to an astoria service
Adding custom elements to OData Feeds-EDM
Adding custom elements to OData Feeds-CLR
Adding custom elements to OData Feeds
Server Driven Paging
Error Handling
useful code snippets
Checklist for OData Feed publishers
Enabling Cross Domain access to your OData feeds
OData applications I built
OData Browser for Windows Phone
OData Desktop/web browser
Useful links for OData Client applications
Detect if there are pending changes in client
Working with 1 to many associations
Working with 1 to 1 associations
Customize serialization of entities
Working with Inheritance
Running Batched queries
Auto Paging enumerable
Sample Windows Phone application
T4 templates for client-side proxy generation
Server-side sorting/paging in Silverlight
OData client, Silverlight and Forms Authentication
Archives
Archives
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)
MSDN Blogs
>
With Great Power comes Great Response.write('Ability')
>
February, 2007
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
With Great Power comes Great Response.write('Ability')
Show and Hide ModalPopupExtender from JavaScript
Posted
over 5 years ago
by
Phani Raju MSFT
30
Comments
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. 4) The Javascript would look like this. <script language= "javascript" > function...
With Great Power comes Great Response.write('Ability')
Change ServiceMethods and Web Service for the AutoCompleteExtender From Client Side
Posted
over 5 years ago
by
Phani Raju MSFT
8
Comments
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 Talks to from the Client Side. You can achieve this easily using the Functions Provided by the...
With Great Power comes Great Response.write('Ability')
Implementing Image Zoom using MS Ajax Slider Control
Posted
over 5 years ago
by
Phani Raju MSFT
8
Comments
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 a cool Slider. The Slider control provides the value of the current Slide and lets you do stuff with...
With Great Power comes Great Response.write('Ability')
Customizing the MS Ajax AutoCompleteExtender To Render Images Instead Of Text
Posted
over 5 years ago
by
Phani Raju MSFT
2
Comments
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. This is how I want it to look. I know that its pretty easy to achieve the effect using the client...
With Great Power comes Great Response.write('Ability')
Extending the PhotoGrid to allow Xml DataBinding using JavaScript Enumerations
Posted
over 5 years ago
by
Phani Raju MSFT
1
Comments
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 /**** Enumeration to specify the Data Source Type**********/ 1) The Constructor for the Enumeration AtlasDemo...
With Great Power comes Great Response.write('Ability')
Animating Multiple Controls on an Event using Microsoft Ajax AnimationExtender Controls
Posted
over 5 years ago
by
Phani Raju MSFT
1
Comments
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 screenshot below. We shall use Four Image Controls and position them using Css Positioning Styles. <...
With Great Power comes Great Response.write('Ability')
Using the Prototype Model with Microsoft AJAX
Posted
over 5 years ago
by
Phani Raju MSFT
3
Comments
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 Enumerations Reflection Sounds Neat , doesnt it ? Well, lets get started ... We will build a Re-usable...
Page 1 of 1 (7 items)