Click here to Skip to main content
Click here to Skip to main content

ASP.NET Control from jQuery DatePicker in 3 Minutes

By , 14 Dec 2009
 

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

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

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 :)

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.

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

This code dynamically renders JavaScript like:

var texbox = $("#myTextbox");
texbox.datepicker({onSelect : function() {....
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.

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)

About the Author

Alexandr Sergeevich Ilyin
Software Developer Xtensive
Russian Federation Russian Federation
Member
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.


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 3memberInba karthik31 Jan '13 - 2:19 
QuestionWhat I have to add if I want to add datapicker to new projectmemberazoozey22 Jul '12 - 2:02 
QuestionNice controlmemberbazshah8 May '12 - 1:37 
GeneralPutting this datepicker inside UpdatePanelmemberorchik11 Jul '10 - 21:49 
GeneralGood i would like morememberYves4 May '10 - 15:44 
QuestionHow can I add DatePicker attribute values ? [modified]memberBamford7 Apr '10 - 1:05 
AnswerRe: How can I add DatePicker attribute values ?memberAlexandr Sergeevich Ilyin7 Apr '10 - 7:02 
GeneralRe: How can I add DatePicker attribute values ? [modified]memberBamford7 Apr '10 - 7:46 
GeneralRe: How can I add DatePicker attribute values ?memberAlexandr Sergeevich Ilyin7 Apr '10 - 22:45 
GeneralRe: How can I add DatePicker attribute values ?memberBamford8 Apr '10 - 1:41 
GeneralNice share!memberSandeep Mewara28 Mar '10 - 2:06 
GeneralMy vote of 1memberbezveza21 Dec '09 - 20:50 
GeneralRe: My vote of 1memberAlexandr Sergeevich Ilyin21 Dec '09 - 21:03 
GeneralRe: My vote of 1memberMihai Maerean21 Dec '09 - 22:05 
GeneralRe: My vote of 1membercwp4223 Dec '09 - 0:00 
GeneralMy vote of 1memberbabakzawari21 Dec '09 - 8:57 
GeneralRe: My vote of 1memberAlexandr Sergeevich Ilyin21 Dec '09 - 21:05 
GeneralRe: My vote of 1member Muammar©25 Dec '09 - 5:47 
GeneralVery sofisticated.membergstolarov16 Dec '09 - 17:42 
GeneralRe: Very sofisticated.membersangam uprety16 Dec '09 - 18:36 
GeneralRe: Very sofisticated.membergstolarov16 Dec '09 - 18:46 
GeneralRe: Very sofisticated. [modified]memberAlexandr Sergeevich Ilyin16 Dec '09 - 20:07 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 14 Dec 2009
Article Copyright 2009 by Alexandr Sergeevich Ilyin
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid