Range
in namespace DotVVM.Framework.Controls.Bootstrap4
Renders Bootstrap Range input control.
Usage & Scenarios
Renders the Bootstrap range form control.
Sample 1: Basic Range
The MinValue and MaxValue properties specify the boundaries for selected values.
The Step property defines the difference between selectable values.
The SelectedValue property contains a binding to a viewmodel property with value selected in the range control.
<bs:Range MinValue="0" MaxValue="2000" Step="10"
SelectedValue="{value: Value}" />
{{value: Value}}
public class ViewModel : DotvvmViewModelBase
{
public double Value { get; set; } = 1000;
}
Sample 2: Range Changes
The Changed event occurs when the user changes the selected value.
The Enabled property can be used to enable and disable the control.
<bs:Range MinValue="0" MaxValue="2000" Step="10"
SelectedValue="{value: Value}"
Changed="{command: OnValueChanged()}"
Enabled="{value: Enabled}" />
<p>Value: {{value: Value}}</p>
<p>Number of changes: {{value: ValueChanges}}</p>
<p><bs:CheckBox Text="Allow changes" Checked="{value: Enabled}" /></p>
public class ViewModel : DotvvmViewModelBase
{
public double Value { get; set; } = 1000;
public int ValueChanges { get; set; }
public bool Enabled { get; set; } = true;
public void OnValueChanged()
{
ValueChanges++;
}
}
Properties
| Name | Type | Description | Notes | Default Value | |
|---|---|---|---|---|---|
| Attributes | Dictionary<String,Object> |
attribute
static value
|
null | ||
| 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. |
attribute
bindable
|
null | |
| Enabled | Boolean | Gets or sets a value indicating whether the range control is enabled. |
attribute
static value
bindable
|
False | |
| FormControlStyle | BootstrapFormStyle | Gets or sets the Bootstrap form style of the control. |
attribute
static value
|
Default | |
| ID | String | Gets or sets the unique control ID. |
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. |
attribute
static value
bindable
|
null | |
| MaxValue | Double | Gets or sets the end point of the scale. |
attribute
static value
|
100 | |
| MinValue | Double | Gets or sets the start point of the scale. |
attribute
static value
|
0 | |
| SelectedValue | Double | Gets or sets the value selected by the user. |
attribute
bindable
|
0 | |
| Step | Double | Gets or sets the size of the step which defines the difference between selectable values. |
attribute
static value
|
1 | |
| Visible | Boolean | Gets or sets whether the control is visible. |
attribute
bindable
|
True |
Events
| Name | Type | Description | |
|---|---|---|---|
| Changed | Command | Gets or sets the command that triggers when the user finishes changing the value. |