Progressmeter

Introduction

Button is one of the core elements and supported well on on technologies.

Properties

Property

Fires Events

Possible Values

Notes

maximum (int)

No

 

Lower boundary

minimum (int)

No

 

Upper boundary

value (int)

No

 

 

indeterminate (bool)

No

 

When set to true the progress meter displays in "Knight-Rider" style. Used to indicate a process with no ability to provide a finish estimate.

Methods

None.

Sample Usage

<progressmeter id="uploadMeter" minumum="1" value="30"/>
....
XulProgressmeter meter = (XulProgressmeter) document.getElementById("uploadMeter");
meter.setValue(10);