BootstrapRangeSelectorBehaviorSettings.ValueChangeMode Property
Specifies when the component raises the BootstrapClientRangeSelector.ValueChanged event.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v25.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
[DefaultValue(RangeSelectorSliderValueChangeMode.OnHandleRelease)]
public RangeSelectorSliderValueChangeMode ValueChangeMode { get; set; }
Property Value
Type | Default | Description |
---|---|---|
RangeSelectorSliderValueChangeMode | OnHandleRelease | An enumeration value. |
Available values:
Name | Description |
---|---|
OnHandleMove | The event fires whenever a user drags a slider handle. |
OnHandleRelease | The event fires once a user drops a slider handle. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to ValueChangeMode |
---|---|
BootstrapRangeSelector |
|
Remarks
The ValueChangeMode
property accepts the following RangeSelectorSliderValueChangeMode enumeration values that specify when the component raises the BootstrapClientRangeSelector.ValueChanged event:
OnHandleMovenMoving
- The event fires whenever a user drags a slider handle.
OnHandleRelease
- The event fires once a user drops a slider handle.
See Also