JavaScript/jQuery RangeSelector - loadingIndicator
Type:
When the widget is bound to a remote data source, it can display a loading indicator while data is loading.
To enable the automatic loading indicator, set the enabled option to true.
If you want to change the loading indicator's visibility, use the show option or the showLoadingIndicator() and hideLoadingIndicator() methods.
backgroundColor
Type:
Default Value: '#FFFFFF'
This option supports the following colors:
- Hexadecimal colors
- RGB colors
- RGBA colors
- Predefined/cross-browser color names
- Predefined SVG colors
- Paint server address
enabled
Type:
Default Value: false
The loading indicator's visibility is tied to the DataSource's load method: it appears when the method's execution starts and hides when the execution is complete. The RangeSelector calls the method internally.
NOTE
The dataSource option does not have to be set to a DataSource instance because the widget wraps anything passed to this option in the DataSource.
If you want to change the loading indicator's visibility, use the show option.
Feedback