DatePicker
Calendar control with great support for both Desktop and Mobile/Tablets. The control is based on the jQuery UI DatePicker widget with many improvements such as support for selecting a timestamp, support for mobile, and an Object Oriented interface.
Basic example
var dp = new Fit.Controls.DatePicker("Date1");
dp.Locale("en-US");
dp.OnChange(function(sender)
{
alert("Date: " + dp.GetText());
});
dp.Render(document.body);