Click here to Skip to main content
6,629,377 members and growing! (20,160 online)
Email Password   helpLost your password?
Web Development » Ajax and Atlas » General     Intermediate License: The Code Project Open License (CPOL)

Some Ajax Tips and Tricks

By desalbres

This code snippet shows how to display an hourglass on an AJAX web page, and also how to create a click once button
Javascript, Windows, .NET 2.0, Ajax, VS2005, Dev
Version:2 (See All)
Posted:1 Feb 2007
Updated:26 Feb 2007
Views:29,757
Bookmarked:24 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
17 votes for this article.
Popularity: 4.10 Rating: 3.33 out of 5
4 votes, 23.5%
1

2
1 vote, 5.9%
3
5 votes, 29.4%
4
7 votes, 41.2%
5

Introduction

Microsoft Ajax 1.0 has just been released!

In synchronous web forms, it's easier to interact with the user, because he/she sees the page flashing back and processing (which is undesirable). With Ajax, you can add an update progress panel, and put an animated GIF inside. But what if you want to display an hourglass? In this article, I will show you two tricks.

Display an Hourglass

The following JavaScript code snippet nicely does the job:

<scriptmanager id="ScriptManager1" runat="server" />
<script language="JavaScript">
var prm = Sys.WebForms.PageRequestManager.getInstance();
    prm.add_initializeRequest(InitializeRequest);
    prm.add_endRequest(EndRequest);
    function InitializeRequest(sender, args) {
     document.body.style.cursor = "wait";    
    }
    function EndRequest(sender, args) {
     document.body.style.cursor = "default";    
    }
</script>

I have received several criticisms due to the length of this article, so I have decided to rename it as: some Ajax tips & tricks.

Click-once Button Control

Lots of attempts have been made to create a click once button...Some of them are quite complex like this one.

I've been searching the internet for a click once submit button, but without success. Some of them cause post-back, which is undesirable, while others don't work with validation controls. And it's so useful because it prevents users from clicking twice on the same button, thus leading to possible bugs and misleading behavior.

Combining the content of the first tip, we can achieve a good result, as shown in the picture below:

<scriptmanager id="ScriptManager1" runat="server" />
<script language="JavaScript">

var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_initializeRequest(InitializeRequest);
prm.add_endRequest(EndRequest);

var btn;

function InitializeRequest(sender, args) 
{
 document.body.style.cursor = "wait";                
 var btnId=args._postBackElement.id;
 btn= document.getElementById(btnId);
 if (btn.type=="button" || btn.type=="submit") 
   btn.disabled=true;
}

function EndRequest(sender, args) 
{                
 document.body.style.cursor = "default";    
 if(btn!=null) btn.disabled=false; 
}
</script>

Code Explanation

In the InitializeRequest function, we retrieve the pressed button id by retrieving the _postBackElement which is passed as an argument, and after we verify if it is a button.
We must declare the button variable as a global variable, to allow the EndRequest function to know which button fires the event.

Note that the above function will work ONLY if the button control is inside an UpdatePanel. And that's it! We have a click-once button! We can even put it in a MasterPage to propagate behavior to your content pages.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

desalbres


Member

Occupation: Web Developer
Location: Brazil Brazil

Other popular Ajax and Atlas articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 12 of 12 (Total in Forum: 12) (Refresh)FirstPrevNext
GeneralFantastic. Brief. To the point. PinmemberSean Devoy7:43 1 Feb '09  
Generalvolks, what are you talking about? - this IS useful PinmemberArthur Juster4:26 9 Mar '07  
GeneralRe: volks, what are you talking about? - this IS useful Pinmemberkenlarose11:45 8 Jun '07  
GeneralIs this useful? Pinmemberednrgc9:33 1 Feb '07  
GeneralRe: Is this useful? Pinmemberaprenot10:07 1 Feb '07  
GeneralRe: Is this useful? Pinmemberednrgc10:10 1 Feb '07  
GeneralRe: Is this useful? Pinmemberaprenot10:16 1 Feb '07  
GeneralRe: Is this useful? Pinmemberednrgc10:20 1 Feb '07  
GeneralRe: Is this useful? PinmemberThyris11:42 8 Mar '07  
GeneralRe: Is this useful? PinmemberJan Seda10:14 1 Feb '07  
GeneralRe: Is this useful? PinmemberDoug K. Wilson15:23 1 Feb '07  
GeneralRe: Is this useful? PinmemberDaron Yöndem13:11 1 Feb '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 26 Feb 2007
Editor: Deeksha Shenoy
Copyright 2007 by desalbres
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project