i am trying to change the values of the progress bar widget to accept a json string i am getting which is something like:
{
'totalDays' : 31,
'daysTaken' : 20
}
so i want the ‘totalDays’ to be the total value of the progress bar (total length) and the ‘daysTaken’ to fill the progress bar.
according to the default docs, only the filled value is possible to change:
$(document).ready(function() {
$("#progressbar").progressbar({ value: 37 });
});
There is a separate method to set the value after init.
There is no configurable max value, but it’s really not necessary since it is easy normalize values.
http://jqueryui.com/demos/progressbar/