The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxProgressBar widget requires the following files:
$("#jqxprogressbar").jqxProgressBar(‘actualValue’, 100);
To get the result of a function(method) call, you need to pass the method name in
the jqxProgressBar’s constructor and parameters(if any).
var value = $("#jqxProgressBar").jqxProgressBar(‘actualValue’);
To set a property(option), you need to pass the property name and value(s) in the
jqxProgressBar's constructor.
$("#jqxProgressBar").jqxProgressBar({ disabled: true });
To get a property(option), you need to pass the property name to the jqxProgressBar's
constructor.
var disabled = $("#jqxProgressBar").jqxProgressBar('disabled');
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose
that you want to get the value after it is changed. The example code below demonstrates
how to bind to the ‘valueChanged’ event of jqxProgressBar.
// bind to valueChanged event.
$("#jqxprogressbar").on('valueChanged', function (event) {
alert("changed");
});