#DateTime
Returns: DateTime
Displays a calendar UI for selecting dates, the value saved is a standard datetime value.
##Data Type Definition Example
##Content Example
##MVC View Example - displays a datetime
###Typed:
@(Model.Content.GetPropertyValue<DateTime>("datePicker").ToString("dd MM yyyy"))
###Dynamic:
@{
@CurrentPage.datePicker.ToString("dd-MM-yyyy")
}

