MBC Computer Solutions Ltd.

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Thursday, 18 May 2006

ASP.NET Outlook-like Time Field

Posted on 13:36 by Unknown

Another updated (and repost) of a Code Project article I authored



  • View demo project
  • Download source - 7.64 Kb


Introduction


The IT side of my company is almost completely service based, mostly involving on-site technicians. We have an internal e-Business portal that we use to track services rendered to the clients. The complaint I received most often from our technicians was how annoying it was to enter the time in and out for service calls. I was presenting three dropdowns for each time field: one for hour, minute and AM/PM. I had heard enough complaining, it was time to do something. Almost all of the time pickers I found on the net were either based on the same concept or a textbox with a masked input. I found these to be equally annoying as moving from field to field was sometimes cumbersome and input was often too restrictive.


One of my favorite Outlook features is the time picker used in appointments and tasks. It is a textbox that applies logic when it looses focus. It takes just about anything you can throw at it as input and computes a time in hh:mm tt format (i.e. 3:45 PM). I decided to duplicate this behavior and encompass it in an ASP.NET 2.0 web control. The standard TextBox control provided 99% of what I needed to accomplish so I derived my class from this one and started coding!


Background


It was decided that the control had to accept any of the following inputs:



  • 3:45 PM
  • 1:45a
  • 230a
  • 545p
  • 1843
  • 23
  • 21:30

It took me two attempts to get it right. My first attempt involved parsing the input for the location of the colon, reading each side into hours and minutes respectively and then searching for an 'a' or 'p' to indicate the time of the day. However, this proved to be troublesome when the input was not exactly as expected, like when a decimal was used instead, etc.


My final implementation handles this by splitting the text input into two components: a numeric component and a text component. I accomplish this with the following client-side JavaScript (complete JavaScript source code found in App_GlobalResources\OutlookTimeField.txt):


Client-side implementation

function UpdateTime(sender) { 
...
var numericPart = '';
var characterPart = '';
var i;
var current;

// Break the text input into numeric and
// character parts for easier parsing
for(i = 0; i < text.length; i++) {
current = text.charAt(i);

if(IsNumeric(current))
numericPart = numericPart + current;

if(IsCharacter(current))
characterPart = characterPart + current;
}
...
}

function IsNumeric(text) {
var validChars = '0123456789';
return (validChars.indexOf(text) > -1)
}

function IsCharacter(text) {
var validChars =
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
return (validChars.indexOf(text) > -1)
}

After the text is split, figuring out what the user intended is relatively simple. First, if the characterPart contains an A or an a, treat it as AM (unless the hour is greater then 12), otherwise, default to PM. Second, depending on how many characters were entered in the numericPart, split the hours and minutes according to the following algorithm:

...
if(numericPart.length >= 4) {
hour = numericPart.substring(0, 2);
minute = numericPart.substring(2, 4);
} else if(numericPart.length == 3) {
hour = numericPart.substring(0, 1);
minute = numericPart.substring(1, 3);
} else if(numericPart.length == 2) {
hour = numericPart.substring(0, 2);
minute = '00';
} else if(numericPart.length == 1) {
hour = numericPart.substring(0, 1);
minute = '00';
} else {
// Just use the current hour
var d = new Date();
hour = d.getHours();

minute = '00';
}
...

Next, apply some 24-hour logic:

...
if(hour > 12) {
if(hour <= 24) {
hour -= 12;
dayPart = 'PM';
} else {
// If the hour is still > 12 then the
// user has inputed something that doesn't
// exist, so just use current hour

hour = (new Date()).getHours();

if(hour > 12) {
hour -= 12;
dayPart = 'PM';
} else {
dayPart = 'AM';
}
}
}

if(hour == 0) {
hour = 12;
dayPart = 'AM';
}
...

All that's left on the client-side is updating the sending textbox's value: sender.value = hour + ':' + minute + ' ' + dayPart;


Server-side implementation


There really isn't much to the server side code. First, override the Render method to add an onBlur event to the TextBox:

protected override void Render(HtmlTextWriter writer) {     
writer.AddAttribute(BLUR_ATTRIBUTE, "UpdateTime(this);");
base.Render(writer);
}

Second, override the OnPreRender method to inject the client-side script:

protected override void OnPreRender(EventArgs e) {
base.OnPreRender(e);
if (!Page.ClientScript.IsClientScriptBlockRegistered(this.GetType(),
SCRIPT_KEY)) {
Page.ClientScript.RegisterClientScriptBlock(this.GetType(),
SCRIPT_KEY, Resources.ControlResources.OutlookTimeField, true);
}
}

And last, create a new property that returns a TimeSpan structure with the corresponding time:

public TimeSpan Time
{
get {
if (string.IsNullOrEmpty(Text))
return TimeSpan.Zero;
else
return TimeSpanHelper.GetTimeSpan(Text);
}
set { Text = TimeSpanHelper.ConvertTimeSpanToString(value); }
}

I won't go into the code that converts to and from the TimeSpan structure as it's relatively straightforward. You can find my implementation in App_Code\TimeSpanHelper.cs.


Using the code


Same as using any other web control, but for the sake of being thorough:

...
<%@ Register TagPrefix="mbc"
Namespace="Mbccs.WebControls" %>
...
<mbc:OutlookTimeField runat="server" ID="startTime"
AutoCompleteType="None" />
...

Points of interest



  • Set the AutoCompleteType property of the OutlookTimeField to None to prevent any browser annoyances.
  • This control is not localizable (only suitable for US/CAN)
  • I have not implemented this web control in a standalone DLL for simplicity and because there are tons of articles on doing this.
  • I am purposefully throwing a FormatException (this is not a bug) if you type in bogus data (that the control does not re-format) and attempt to post back. If you want to prevent this, you should:


    1. add a RegularExpressionValidator using the regular expression found in App_Code\TimeSpanHelper.cs or
    2. catch the exception and apply some custom logic - perhaps using a default date or the current date.
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Posted in | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • How to change the temperature scale on a Honeywell T6575 Thermostat
    [The complete documentation can be found at http://customer.honeywell.ca/techlit/pdf/95c-00000s/95c-10897.pdf ]   This was bugging me fo...
  • C# – Converting IP’s to Numbers and Numbers to IP’s in 2 lines of code
    I don’t know why everywhere I searched had such complex implementation of this, but converting from a dotted IP to a number (integer) and ba...
  • Why does iTunes setup need to close Outlook?!
    Everytime I update iTunes I remember why I left it so long - the install process is quite annoying! Can someone please explain to me why it...
  • Mac OSX 10.5.2 Freezing Intermittently
    I've been having an issue with my MacBook (you know, that computer I hide under my desk most of the time) where intermittently, the UI w...
  • ScottGu’s Color Scheme for Visual Studio 2010
    ScottGu was nice enough to provide the world with his awesome Visual Studio 2008 color scheme.  I’ve been using this for many years now an...
  • Don’t forget about the defer attribute for non-essential external scripts
    I was recently reviewing a customers eCommerce site and I noticed that the “Please Wait” page that occurs after completing an order but befo...
  • Windows Search 4.0 Released .....and searching finally works!
    I've been dealing with Outlook 2007's search problems since installing it way back then.  Most frequently, I'd search a keyword;...
  • Recursively finding controls - where to start?
    I love hearing about bugs and problems in components I have authored.  Most people hate hearing about bugs (I assume because they like to th...
  • Dell PowerEdge & Broadcom Issues
    For some time now we've been experiencing a problem across the board with Dell PowerEdge 2900/2950 servers equipped with Broadcom Gigabi...
  • Popup Window Manager
    I was just reading a post by Rick Strahl about managing popup windows in the browser.  I actually authored a mini popup window manager a wh...

Blog Archive

  • ►  2012 (1)
    • ►  February (1)
  • ►  2010 (1)
    • ►  April (1)
  • ►  2009 (7)
    • ►  December (1)
    • ►  November (1)
    • ►  October (1)
    • ►  July (1)
    • ►  April (2)
    • ►  February (1)
  • ►  2008 (36)
    • ►  November (3)
    • ►  October (2)
    • ►  September (1)
    • ►  August (1)
    • ►  July (2)
    • ►  June (6)
    • ►  May (4)
    • ►  April (1)
    • ►  March (4)
    • ►  February (7)
    • ►  January (5)
  • ►  2007 (35)
    • ►  December (1)
    • ►  November (9)
    • ►  October (3)
    • ►  September (6)
    • ►  August (7)
    • ►  July (9)
  • ▼  2006 (3)
    • ▼  May (3)
      • Welcome
      • ASP.NET Outlook-like Time Field
      • Pushing HTML content to a Blackberry
Powered by Blogger.

About Me

Unknown
View my complete profile