Click here to Skip to main content
15,884,176 members
Articles / Web Development / ASP.NET

ASP.NET Control from jQuery DatePicker in 3 Minutes

Rate me:
Please Sign up or sign in to vote.
4.64/5 (20 votes)
14 Dec 2009CPOL3 min read 124.4K   8K   51   24
A technique for creating ASP.NET controls from existing JavaScript components is presented.

Introduction

Whatever software we create, a good practice is to make it out of loosely coupled reusable components. In ASP.NET, this means, creating reusable controls instead of implementing all the functionality in .aspx pages. In this article, we’ll create DatePicker control based on the jQuery plug-in, using the LiveUI framework our team has been developing. Principally, there are just two problems: first one is to synchronize the plug-in’s state with the server side control’s properties, and the second is to notify the control about client-side events. As we’ll see, both problems can be solved using LiveUI.

Background

LiveUI

As most readers of this article are unfamiliar with LiveUI, it is appropriate to explain shortly what it is. LiveUI is a web framework targeted at rich Internet applications. It provides tools for JavaScript rendering, state management, and client server interaction. The most important LiveUI type we will use is Js. Shortly, Js builds an object model of JavaScript code to be performed by the client’s browser. For example, we write this in C#: Js.Call(“alert”, Js.Const(“Hello world”)), and the browser will perform alert(“Hello world”).

DatePicker

DatePicker is part of jQuery.UI. It looks nice and provides a very simple API. To create a new DatePicker, we should call $(#inputFieldId).datepicker(), $(#inputFieldId).datepicker(‘getdate’) to get the selected date, and $(#inputFieldId).datepicker(‘setdate’) to set the selected date. I’ve chosen this plug-in because it illustrates the state synchronization problem perfectly. The DatePicker control will have the SelectedDate property which should be synchronized with the client side plug-in’s value. The control will also have the ValueChamged event which should be fired when the user selects a date.

Control Code

C#
public class Datepicker : ControlBase
{
  public event EventHandler ValueSelected;

  public DateTime? Value {
    get { return ClientState.GetValue("value"); }
    set { ClientState.SetValue("value", value); }
  }

  public override void OnRender(JsCreationSection section)
  {
    if (!IsRendering)
      return;

    var textInput = Js.Call("$", Js.Const("#" + ClientID));
    textInput.Call("datepicker", Js.Json(
      Js.JsonItem("onSelect", Js.Function(delegate {
         var request = CreateMethodInvocationRequest("OnValueSelected");
         request.Send();
      })
    )));

    ClientState.Synchronize("value", 
      () => textInput.Call("datepicker", Js.Const("getDate")),
      value => textInput.Call("datepicker", 
      Js.Const("setDate"), value));
  }

  public void OnValueSelected()
  {
    if (ValueSelected != null)
      ValueSelected(this, EventArgs.Empty);
  }

  protected override void Render(HtmlTextWriter writer)
  {
    writer.Write("<input type='text' id='{0}'/>", ClientID);
  }
}

Points of Interest

C#
public override void OnRender(JsCreationSection section)
{

LiveUI provides JavaScript "Sections" to make sure all JavaScript objects are created when used. The principle is simple: we create JavaScript methods like OnRender(JsCreationSection section) and we can use them safely in OnRender(JsInitSection section). If truth be told, the word "Section" should be replaced with "Phase" or "Stage" and it will be done unless you suggest an even better name :)

C#
if (!IsRendering)
  return;

If the page receives an asynchronous AJAX request, then our control should not produce any JavaScript unless it is placed in an UpdatePanel. The IsRendering property encapsulates all the required checks.

C#
var textInput = Js.Call("$", Js.Const("#" + ClientID));
textInput.Call("datepicker", Js.Json(
   Js.JsonItem("onSelect", Js.Function(delegate {...

This code dynamically renders JavaScript like:

JavaScript
var texbox = $("#myTextbox");
texbox.datepicker({onSelect : function() {....
C#
var request = CreateMethodInvocationRequest("OnValueSelected");
reque request.Send();

LiveUI provides a request management infrastructure allowing client-side objects to call server-side methods. I.e., dynamically generated JavaScript code instantiates a new request and is sent to the server (using an asynchronous postback which is the default option). By the way, the control's methods should be JSON-serializable or be of the JsObject type.

C#
ClientState.Synchronize("value", 
  () => textInput.Call("datepicker", Js.Const("getDate")),
  value => textInput.Call("datepicker", Js.Const("setDate"), value));

ClientState is an important element in the LiveUI infrastructure. We can consider it as a dictionary keeping the values in client-side objects. So, the two delegates passed to the Synchronize method just tells ClientState how to keep 'value'.

Conclusion

Though the code I provided can be implemented in three minutes, it takes much longer to understand what is going on. Our team realizes it, and we are trying to make the API clearer and to provide more samples, but our efforts are doomed without feedback. So, whether you like the solution presented or not, please let us know.

License

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


Written By
Software Developer Xtensive
Russian Federation Russian Federation
I've been working at Xtensive company for 3 years.
My current project is LiveUI web framework which should make everybody happy. If I can be of any help to you feel free to contact me alexandr.ilyin at gmail.com.

By the way, I have a blog.


Comments and Discussions

 
QuestionCan we use this datepicker with ajax updatepanel? Pin
Nilesh C17-Nov-13 3:31
Nilesh C17-Nov-13 3:31 
GeneralMy vote of 1 Pin
Jignesh Khant12-Nov-13 1:54
Jignesh Khant12-Nov-13 1:54 
GeneralMy vote of 3 Pin
Inba karthik31-Jan-13 2:19
Inba karthik31-Jan-13 2:19 
QuestionWhat I have to add if I want to add datapicker to new project Pin
azoozey22-Jul-12 2:02
azoozey22-Jul-12 2:02 
QuestionNice control Pin
bazshah8-May-12 1:37
bazshah8-May-12 1:37 
GeneralPutting this datepicker inside UpdatePanel Pin
orchik11-Jul-10 21:49
orchik11-Jul-10 21:49 
GeneralGood i would like more Pin
Yves4-May-10 15:44
Yves4-May-10 15:44 
QuestionHow can I add DatePicker attribute values ? [modified] Pin
Bamford7-Apr-10 1:05
Bamford7-Apr-10 1:05 
AnswerRe: How can I add DatePicker attribute values ? Pin
Alexandr Sergeevich Ilyin7-Apr-10 7:02
Alexandr Sergeevich Ilyin7-Apr-10 7:02 
GeneralRe: How can I add DatePicker attribute values ? [modified] Pin
Bamford7-Apr-10 7:46
Bamford7-Apr-10 7:46 
GeneralRe: How can I add DatePicker attribute values ? Pin
Alexandr Sergeevich Ilyin7-Apr-10 22:45
Alexandr Sergeevich Ilyin7-Apr-10 22:45 
GeneralRe: How can I add DatePicker attribute values ? Pin
Bamford8-Apr-10 1:41
Bamford8-Apr-10 1:41 
GeneralNice share! Pin
Sandeep Mewara28-Mar-10 2:06
mveSandeep Mewara28-Mar-10 2:06 
GeneralMy vote of 1 Pin
bezveza21-Dec-09 20:50
professionalbezveza21-Dec-09 20:50 
GeneralRe: My vote of 1 Pin
Alexandr Sergeevich Ilyin21-Dec-09 21:03
Alexandr Sergeevich Ilyin21-Dec-09 21:03 
GeneralRe: My vote of 1 Pin
Mihai Maerean21-Dec-09 22:05
Mihai Maerean21-Dec-09 22:05 
GeneralRe: My vote of 1 Pin
cwp4223-Dec-09 0:00
cwp4223-Dec-09 0:00 
GeneralMy vote of 1 Pin
babakzawari21-Dec-09 8:57
babakzawari21-Dec-09 8:57 
GeneralRe: My vote of 1 Pin
Alexandr Sergeevich Ilyin21-Dec-09 21:05
Alexandr Sergeevich Ilyin21-Dec-09 21:05 
Would not you comment what exactly you did not like ?
GeneralRe: My vote of 1 Pin
Muammar©25-Dec-09 5:47
Muammar©25-Dec-09 5:47 
GeneralVery sofisticated. Pin
gstolarov16-Dec-09 17:42
gstolarov16-Dec-09 17:42 
GeneralRe: Very sofisticated. Pin
sangam uprety16-Dec-09 18:36
sangam uprety16-Dec-09 18:36 
GeneralRe: Very sofisticated. Pin
gstolarov16-Dec-09 18:46
gstolarov16-Dec-09 18:46 
GeneralRe: Very sofisticated. [modified] Pin
Alexandr Sergeevich Ilyin16-Dec-09 20:07
Alexandr Sergeevich Ilyin16-Dec-09 20:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

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