Skip to main content

BootstrapRangeSelectorBehaviorSettings.CallValueChanged Property

Specifies the value defining when to call the BootstrapClientRangeSelector.ValueChanged event’s handler.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v24.2.dll

NuGet Package: DevExpress.Web.Bootstrap

#Declaration

[DefaultValue(RangeSelectorCallValueChanged.OnMovingComplete)]
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
.SettingsBehavior .CallValueChanged

#Remarks

The CallValueChanged property accepts the following RangeSelectorCallValueChanged enumeration values, specifying when the BootstrapClientRangeSelector.ValueChanged event’s handler is called:

  • 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.
See Also