Methods
# inner setConfig(arrConf)
Changes the configuration of the progress bar.
The new configuration is reflected dynamically in the
web interface.
Parameters:
| Name | Type | Description |
|---|---|---|
arrConf |
Array.<module:RMP_ProgressBar~RMP_ProgressBarStep> | Step configuration as an array |
Example
id_bar.setConfig([
{"reference":1,"title":"Task1","screen":[1]},
{"reference":2,"title":"Task2","state":"active","number":"2","screen":[2,4]},
{"reference":3,"title":"Task3"}
]);
# inner setNumber(reference, number)
Changes the number of the given step.
Parameters:
| Name | Type | Description |
|---|---|---|
reference |
number | Reference of the step |
number |
number | New number of the step |
if
reference or number is not a number# inner setState(reference, state)
Changes the state of the given step.
Parameters:
| Name | Type | Description |
|---|---|---|
reference |
number | Reference of the step |
state |
string | New state of the step: 'previous', 'active', 'hidden', or 'next' |
if
reference is not a number or state
is not 'previous', 'active', 'hidden' or 'next'# inner setTitle(reference, title)
Changes the title of the given step.
Parameters:
| Name | Type | Description |
|---|---|---|
reference |
number | Reference of the step |
title |
string | New title of the step |
if
reference is not a number, or if title is not a stringType Definitions
RMP_ProgressBar~RMP_ProgressBarStep
# RMP_ProgressBarStep
Progress bar step.
Properties:
| Name | Type | Attributes | Default | Description |
|---|---|---|---|---|
reference |
number | Order number of the step | ||
title |
string | Title of the step | ||
subtitle |
string |
<optional> |
Subtitle of the step | |
number |
string |
<optional> |
Indicator inside the circle of the step. You can ignore it, or use the auto value to have an automatic, incremental number. | |
state |
string |
<optional> |
"next" | State of the step: 'previous', 'active', 'hidden', or 'next' |
screen |
string |
<optional> |
List of references of the manual task |