BootstrapRangeSelectorBehaviorSettings.CallValueChanged Property
OBSOLETE
This property is obsolete now. Use the ValueChangeMode property instead.
Specifies the value defining when to call the BootstrapClientRangeSelector.ValueChanged event’s handler.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v25.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
[Browsable(false)]
[DefaultValue(RangeSelectorCallValueChanged.OnMovingComplete)]
[Obsolete("This property is obsolete now. Use the ValueChangeMode property instead.", false)]
public RangeSelectorCallValueChanged CallValueChanged { get; set; }
Property Value
Type | Default | Description |
---|---|---|
RangeSelectorCallValueChanged | OnMovingComplete | One of the RangeSelectorCallValueChanged enumeration values. |
Available values:
Name | Description |
---|---|
OnMovingComplete | The function is called once the slider move is completed. |
OnMoving | The function is called upon every move of the sliders regardless of its completion. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to CallValueChanged |
---|---|
BootstrapRangeSelector |
|
Remarks
The CallValueChanged
property accepts the following RangeSelectorCallValueChanged
enumeration values that specify when the component raises the BootstrapClientRangeSelector.ValueChanged event:
onMoving
- the handler is called upon every move of the sliders regardless of its completion.onMovingChanged
- the handler is called once the slider moves completed.