Title:       Time Picker Ajax Extender Control
Author:      Mohammed Farhan Ejaz
Email:       farhan_2b@rediffmail.com, farhan.ejaz@gmail.com
Language:    C# 2.0, 3.5, Javascript
Platform:    Web
Technology:  Asp.net Ajax
Level:       Advanced
Description: A TimePicker Extender Control
Section      Ajax
SubSection   Controls
License:     CPOL

Default.JPG

Styled.JPG

Introduction

The Time Picker is an Ajax Extender Control which can be used to input time. It tries to fill the gap of such extender not available under the Ajax Control Toolkit.

Extender controls can be used to enhance the client functionality of ASP.NET Web server controls. You do not use extender controls by themselves. Instead, you attach them to another ASP.NET Web server control. Extender controls are attached to a Web server control by setting the TargetControlID property of the extender control to the ID of the server control being extended.

The library download includes:

  • Help File
  • Binaries
  • Source with Demo Application
This article contains source and binaries for both Framework 2.0 and Framework 3.5.

Background

While working for a project, I came across a need to have users enter time the way they can choose a date from the Calendar Control. Being aware of the fact that Microsoft does not provides any such control out of the box I started looking out for other options. There were some good solutions available but most of them were using client scripting (Jquery/Javascript).

This is when I stumbled upon these two articles

Since I have very less experience on ASP.Net, I decided to take it as a learning opportunity to build on such a control, based on the above two examples.
My objective was to build a control that must be simple to use/configure, provide useful feature set and should be similar to the Ajax Control Toolkit Calendar control.

Using the code

To use the control:
1. Add a reference to the control assembly Ajaxified.dll. Also add the assembly to the toolbox. The TimePicker control will be aded to the toolbox.
2. Add a textbox control whom you need to extend to behave as a Time Picker. Drag the TimePicker control from the toolbox. It will add the following page directive and the control on the page.


<%@ Register TagPrefix="Ajaxified" Assembly="Ajaxified" Namespace="Ajaxified" %>

The final markup will be
<asp:TextBox ID="TextBox1" runat="server" Text=""></asp:TextBox>
<Ajaxified:TimePicker ID="TimePicker1" runat="server" TargetControlID="TextBox1"></Ajaxified:TimePicker>
		

The Time Picker control exposes following properties

Property Name Type Comments
CloseOnSelection boolean Specify whether the pop should automatically close when a specific time is selected. The default is false.
MinuteStep Int32 Specify the minute interval between two values. The default value is 15 min.
OnClientShowing string Client event when the popup starts to open.
OnClientShown string Client event when the popup has opened completely.
OnClientHiding string Client event when the popup starts to close.
OnClientHidden string Client event when the popup is completely closed.
OnClientSelectionChanged string Client event when the time selection is done.
CssClass string The Css class Name for the control.
HeaderCssClass string The Css class Name for the header part.
TitleCssClass string The Css class Name for the title text.
TabCssClass string The Css class Name for the am/pm tab.
ItemCssClass string The Css class Name for the item cell.
SelectedItemCssClass string The Css class Name for the item cell that is selected.
SelectedTabCssClass string The Css class Name for the tab that is selected.

The markup illustrating the use of these properties:
     <asp:TextBox ID="TextBox2" runat="server" Text=""></asp:TextBox>
     <Ajaxified:TimePicker runat="server" TargetControlID="TextBox2" 
     	CssClass="timepicker"
           HeaderCssClass="header" 
           TitleCssClass="title" 
           ItemCssClass="item" 
           SelectedItemCssClass="selecteditem"
           TabCssClass="tab" 
           SelectedTabCssClass="selectedtab" 
           OnClientShowing="clientShowing"
           OnClientShown="clientShown" 
           OnClientHiding="clientHiding" 
           OnClientHidden="clientHidden"
           OnClientSelectionChanged="selectionChanged" 
           MinuteStep="10" 
           CloseOnSelection="true">
    </Ajaxified:TimePicker>

and to handle the events
<script language="javascript" type="text/javascript">
    function clientShowing(sender) {
        //sender is reference to the timepicker object
    }
    function clientShown(sender) {
        //sender is reference to the timepicker object
    }
    function clientHiding(sender) {
        //sender is reference to the timepicker object
    }
    function clientHidden(sender) {
        //sender is reference to the timepicker object
    }
    function selectionChanged(sender) {
        alert(sender._selectedTime);
    }
</script>

Styling

The basic layout of the control is defined as illustrated in the image below.

Layout.JPG

Each section has a CssName property attached to it to handle all the styling needs for the control. If the user does not assign these properties, the control renders with default style as shown in the introductory image. It is advisable to play only with the color and font schemes to maintain the layout consistency. The demo application contains a Style Sheet to illustrate how to override the default style for the control.

Section Name Css Property Name
CssClass Whole Control.
HeaderCssClass Header.
TitleCssClass Title Text.
TabCssClass AM/PM tab.
ItemCssClass Item Cell.
SelectedItemCssClass Selected Item Cell.
SelectedTabCssClass Selected Tab.

Validation

The control is also capable of basic input validation.

Validation.JPG

If the user keys in invalid time format, the control will provide a visual cue that something is wrong as shown in the image above.

Points of Interest

This exercise has been of a great value to me, specially when it came to client side scripting. The most important thing I came to learn was how to use javascript in an object oriented way. There were however minor hiccups when trying out in various browsers.

I have tested the component on IE8, Firefox 4 and Chrome. There is an issue in the layout when used in IE7.0 but the whole idea of this exercise was creating an extender control rather than learning about cross browser issues. So I left it out there.

References

Appreciations for these authors for providing such nice examples.

推荐.NET配套的通用数据层ORM框架:CYQ.Data 通用数据层框架
新浪微博粉丝精灵,刷粉丝、刷评论、刷转发、企业商家微博营销必备工具"