Click here to Skip to main content
6,822,613 members and growing! (19,429 online)
Email Password   helpLost your password?
Web Development » Ajax and Atlas » Controls     Intermediate License: The Code Project Open License (CPOL)

ClientCallback custom control for web applications

By Sandeep Mewara

A client callback custom control and how to use it in WebForms.
C#, Javascript, CSS, HTML, XHTML, Windows, .NET (.NET2.0, .NET3.0, .NET3.5), ASP, ASP.NET, ADO.NET, WebForms, Ajax, Dev
Posted:19 Dec 2008
Views:18,528
Bookmarked:80 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
43 votes for this article.
Popularity: 7.72 Rating: 4.72 out of 5

1
1 vote, 2.3%
2
2 votes, 4.7%
3
3 votes, 7.0%
4
37 votes, 86.0%
5

TestPageImage2.JPG

Introduction

There are scenarios where we have a list of items on one side of a page (the list can be ordered or hierarchical) and on selection of an item from this list, all the details related to it is shown on the other half of the page. All this without a postback or a flicker would give a smooth and good feel to the user.

For example, we have a finance related Web application. We need to see the details related to a stock script in our portfolio (a number of scripts are listed on the same page). The moment a script is selected, all the details and the current status of the script is shown on the same page without any postback or flicker.

Out here, the above described scenario was achieved using the Client Callback feature introduced in ASP.NET 2.0. I found that a good amount of code related to this feature can be embedded inside a custom control such that it is easy to use. Moreover, if we use callback a number of times on a page, it would reduce lots of code. So, I tried to develop a "user friendly" custom control to use the Client Callback feature.

Background

In my current project, we had a scenario where different manufacturing parts were categorized (because of the hierarchical structure in the categorization, we decided to go with a tree view control). On selection of any one part (node), we were supposed to show the status and the data related to it in a grid placed on the same page. Performance was one of the major demands from the client. So, based on the needs, we decided to go with the Client Callback feature. The sample is based on this experience of mine.

Using the code

First, the important code parts of the custom control:

Apart from inheriting the control from WebControl, we also inherit it from ICallbackEventHandler.

public class MyCustomCallBackControl : WebControl, ICallbackEventHandler {}

The OnInit() method of the control is overridden. The callback scripts related to the control are embedded here.

// OnInit was overriden in order to attach a callback handler to the control
protected override void OnInit(EventArgs e)
{
     base.OnInit(e);
            
     string callback = Page.ClientScript.GetCallbackEventReference(this, "input", 
                       string.Concat(ID, "OnSuccess"), "context");
     Page.ClientScript.RegisterClientScriptBlock(typeof(MyCustomCallBackControl), 
                       ID, string.Concat("function ", ID, 
            "Callback(input, context) { ", callback, "; }"), true);
     //Above line - Script added during runtime:
     //function MyCustomCallBackControl1Callback(input, context) 
     //{      
     //    WebForm_DoCallback('MyCustomCallBackControl1',
     //          input,MyCustomCallBackControl1OnSuccess,context,null,false);      
     //}

     //General meaning of it:
     // WebForm_DoCallback(eventTarget, eventArgument, eventCallback, 
     //                    context, errorCallback, useAsync)
}

We will need to write the GetCallBackResult and RaiseCallBackEvent methods related to implement the ICallbackEventHandler interface.

// Event handler for code logic at server side on client-callback
// Event bubbling done here 
public event EventHandler MyCallBackEvent;
public void RaiseCallbackEvent(string eventArgument)
{
      argumentParameter = eventArgument;
      if (MyCallBackEvent != null)
      {
          MyCallBackEvent(this, EventArgs.Empty);
      }
}

public string GetCallbackResult()
{
      //Returns back the output set during the callback
      return renderedOutput;
}

The Client Callback custom control is now ready to use.

We will now work on how to use the control on our web page. We drag drop the control on the page, and define the code-behind handler for it, basically, the server code that will run when the callback control is called.

// Bubbled event for Callback control placed
// One can handle the operations required during the callback out here.
protected void CallBackControl_Perform(object sender, EventArgs e)
{
    DataTable dt = RetrieveDataTable(((
      MyCustomControls.MyCustomCallBackControl)sender).ArgumentParameter);
    gvTest.DataSource = dt;
    gvTest.DataBind();

    //Setting of the response output for callback
    using (System.IO.StringWriter sw = new System.IO.StringWriter())
    {
        gvTest.RenderControl(new HtmlTextWriter(sw));
        ((MyCustomControls.MyCustomCallBackControl)sender).RenderedOutput = sw.ToString();
    }
}

In our sample, we will bind the tree nodes to this callback control. This is done using JavaScript.

//Client Side callback event attached
tNode.NavigateUrl = "javascript:OnNodeClick('" + tNode.Value + "');";

We are just left with defining the JavaScript functions that are attached to the custom callback control. The functions will be bound in the OnNodeClick method defined above.

//Node Callback Click Event
function OnNodeClick(nodeID)
{         
    // Method name to call has a fixed naming convention
    // CustomCallbackControl name + "Callback" 
        // Parameters to the function would be:
            // 1st : Input 
            // 2nd : Context                     
    MyCustomCallBackControl1Callback(nodeID, null); 
}        

// Function name has a fixed naming convention
// CustomCallbackControl name + "OnSuccess"
function MyCustomCallBackControl1OnSuccess(responseText) 
{       
    // Based on responseText, action taken on client side     
    document.getElementById("tdGridView").style.display = "block";
    document.getElementById("gvTest").outerHTML = responseText;   
}

We are finished with using the control now. The naming conventions for the JavaScript functions are defined, and need to be given accordingly.

Points of interest

Performance came out really good, that too with a simple and sleek UI. It was a good experience learning the comparisons and differences between using an UpdatePanel and a callback control.

Making it a custom control helped a lot. Even a beginner can use it without knowing much of what is happening inside it (it can be used multiple times on the same page). The control was easy to use and came out to be a good weapon in my Web stock! :)

History

  • 19th December, 2008: Initial post.

License

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

About the Author

Sandeep Mewara


Member
Did my B.Tech from IIT Kharagpur.

Currently, working as a Module Lead at
Proteans Software Solutions Pvt. Ltd., Bangalore.

Proteans is an outsourcing company
focusing on software product development and business
application development on Microsoft Technology Platform.

=====================================================
Occupation: Web Developer
Company: Proteans Software Solutions Pvt. Ltd., Bangalore.
Location: India India

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 24 of 24 (Total in Forum: 24) (Refresh)FirstPrevNext
GeneralGreat work! Pinmembermjesterak20:03 10 Aug '09  
AnswerRe: Great work! PinmemberSandeep Mewara23:23 7 Jan '10  
GeneralCompare to PageMethod Pinmemberbitseeker9:34 26 Apr '09  
AnswerRe: Compare to PageMethod PinmemberSandeep Mewara23:22 7 Jan '10  
GeneralMy vote of 2 PinmemberProJester112:07 15 Jan '09  
AnswerRe: My vote of 2 PinmemberSam DoLittle20:12 19 Jan '09  
Generalnot Pinmembermohamedgamal8:59 14 Jan '09  
AnswerRe: not PinmemberSandeep Mewara20:08 18 Jan '09  
GeneralWhy Not Use a Page Method? Pinmembernickyt3:34 13 Jan '09  
AnswerRe: Why Not Use a Page Method? PinmemberSandeep Mewara22:20 13 Jan '09  
GeneralVery Nice! PinmemberJimWhite_Aus0:02 13 Jan '09  
AnswerRe: Very Nice! PinmemberSandeep Mewara22:21 13 Jan '09  
GeneralUpdatePanel Pinmembergstolarov14:17 31 Dec '08  
AnswerRe: UpdatePanel PinmemberSandeep Mewara21:49 4 Jan '09  
GeneralRe: UpdatePanel Pinmembergstolarov4:53 5 Jan '09  
AnswerRe: UpdatePanel PinmemberSandeep Mewara9:52 5 Jan '09  
GeneralExcellent article! PinmemberStuart_Mic20:56 24 Dec '08  
GeneralRe: Excellent article! PinmemberSandeep Mewara18:26 29 Dec '08  
GeneralToo good... PinmemberTim Hammer11:07 24 Dec '08  
GeneralRe: Too good... PinmemberSandeep Mewara18:25 29 Dec '08  
GeneralReally nice one! Pinmemberchkumar21:34 19 Dec '08  
GeneralRe: Really nice one! PinmemberSandeep Mewara19:10 21 Dec '08  
GeneralAnother good job PinmemberAbhijit Jana3:47 19 Dec '08  
GeneralRe: Another good job PinmemberSandeep Mewara19:10 21 Dec '08  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

PermaLink | Privacy | Terms of Use
Last Updated: 19 Dec 2008
Editor: Smitha Vijayan
Copyright 2008 by Sandeep Mewara
Everything else Copyright © CodeProject, 1999-2010
Web18 | Advertise on the Code Project