DateTimePicker
in namespace DotVVM.Framework.Controls.Bootstrap
Renders a DateTimePicker control which lets the user either to type the date, or select it from a calendar popup.
Usage & Scenarios
Renders a DateTimePicker control which lets the user either to type the date, or select it from a calendar popup.
Sample 1: Basic Usage
Use the SelectedDate
property to get or set the selected date.
The DateTimePicker
can be switched into three different modes using the Mode
property: DateTime
, Date
and Time
.
The FormatString
property specifies the format that will be used to display selected date. Use standard or
custom .NET date format strings.
The language of the calendar and the first day of week is specified by the request culture. You can find more info in the Globalization tutorial.
<bs:DateTimePicker SelectedDate="{value: Date}" FormatString="g" Mode="DateTime" style="width: 250px" />
<bs:DateTimePicker SelectedDate="{value: Date}" FormatString="d" Mode="Date" style="width: 250px" />
<bs:DateTimePicker SelectedDate="{value: Date}" FormatString="t" Mode="Time" style="width: 250px" />
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotVVM.Framework.ViewModel;
namespace DotvvmWeb.Views.Docs.Controls.bootstrap.DateTimePicker.sample1
{
public class ViewModel : DotvvmViewModelBase
{
public DateTime? Date { get; set; }
public ViewModel()
{
Date = DateTime.Now;
}
}
}
Properties
Name | Type | Description | Notes | Default Value | |
---|---|---|---|---|---|
ClientIDMode | ClientIDMode | Gets or sets the client ID generation algorithm. |
attribute
static value
|
Static | |
DataContext | Object | Gets or sets a data context for the control and its children. All value and command bindings are evaluated in context of this value. The DataContext is null in client-side templates. |
attribute
bindable
|
null | |
Enabled | Boolean |
attribute
static value
bindable
|
True | ||
FormatString | String | Gets or sets format string that will be used to display the date. |
attribute
static value
|
null | |
ID | String | Gets or sets the control client ID within its naming container. |
attribute
static value
bindable
|
null | |
IncludeInPage | Boolean | Gets or sets whether the control is included in the DOM of the page. |
attribute
bindable
|
True | |
InnerText | String | Gets or sets the inner text of the HTML element. Note that this property can only be used on HtmlGenericControl directly and when the control does not have any children. |
attribute
static value
bindable
|
null | |
Mode | DateTimePickerType? | Gets or sets whether you want the user to pick only date, only time, or both date and time. |
attribute
static value
|
DateTime | |
SelectedDate | DateTime? | Gets or sets the date selected in the control. |
attribute
bindable
|
null | |
Visible | Boolean | Gets or sets whether the control is visible. When set to false, `style="display: none"` will be added to this control. |
attribute
bindable
|
True |
Events
Name | Type | Description | |
---|---|---|---|
Changed | Command | Gets or sets the command that will be triggered when the control text is changed. |