Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandobre authored Jun 23, 2019
1 parent cdc5764 commit 214aafa
Showing 1 changed file with 84 additions and 1 deletion.
85 changes: 84 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,97 @@ Check out the Demo: https://apex.oracle.com/pls/apex/f?p=60314:20

### About

A simple item type plug-in displaying a progress bar.
A simple item type plug-in displaying a progress bar. It can be used to show a static percentage, or controlled/scripted via Dynamic Actions or JavaScript for dynamic changes.

### Configuration

#### Size

* Small - 24px height
* Large - 48px height

#### Color

This is the color of the progress part of the bar. It can be any value accepted as valid CSS, and can be changed dynamically in JavaScript.

#### Style

* Solid Color
* Animated Stripes

#### Position

* Regular Page Item
* Floating on Body

#### Show Percentage

* None
* On Bar
* Under Bar

#### Show Message

* None
* On Bar
* Under Bar

#### Options

* Hidden by default

### Control

As this plug-in implements the apex.item interface, you can use the following methods:

```javascript
// Setter Method. Here we set the value to 20% and change the info message, in a 1 second animation
apex.item('P20_PROGRESS_BAR').setValue('20:Loading...:1000');

// Getter Method. This will return "20:Loading...". The animation duration is never included.
var value = apex.item('P20_PROGRESS_BAR').getValue();

// Show/Hide Methods
apex.item('P20_PROGRESS_BAR').show();
apex.item('P20_PROGRESS_BAR').hide();
```

For even more control we can use the methods returned by apexProgressBar(itemName)

```javascript
/* The most important method here is the setValues method.
* You can provide this method with 2 objects. The values, and the options objects
* The values object can contain the elements "percentage", "message", "color" and "duration".
* The options object so far only contains the element "immediate", which defaults to false.
*/

// This is the same as the above setValue call
apexProgressBar('P20_PROGRESS_BAR').setValues({percentage: 20, message: "Loading...", duration: 1000});

// What we can also do is only change one of these values at a time. The other values are left the same.
apexProgressBar('P20_PROGRESS_BAR').setValues({message: "Loading..."});

// As opposed to the setValue function or dynamic action, this function also allows us to change the color of the progress bar
apexProgressBar('P20_PROGRESS_BAR').setValues({color: "red", duration: 100}); //could be helpful when showing an error

// Remember, successive calls to setValue(s) land the animations in a queue.
// To clear the queue and perform the setValues call immediately, use:
apexProgressBar('P20_PROGRESS_BAR').setValues({percentage: 40}, {immediate: true});

// More specific getter methods
var percentage = apexProgressBar('P20_PROGRESS_BAR').getPercentage();
var message = apexProgressBar('P20_PROGRESS_BAR').getMessage();
var color = apexProgressBar('P20_PROGRESS_BAR').getColor();

// To control the animation queue, we can use the following:
apexProgressBar('P20_PROGRESS_BAR').finish(); //goes immediately to the latest state of the queue
apexProgressBar('P20_PROGRESS_BAR').stop(); //stops the animation and empties the queue
```

### Known Issues

* The animation pauses when changing tabs.

### Changelog

2019-06-23 v1.0 initial release
Expand Down

0 comments on commit 214aafa

Please sign in to comment.