Questions tagged [jquery-ui-progressbar]

jQuery UI's Progressbar widget displays the current status of a determinate or indeterminate process (e.g. progress with loading an HTML page).

jQuery UI's Progressbar widget displays the current status of a determinate or indeterminate process (e.g. progress with loading an HTML page).

The progress bar is designed to display the current percent complete for a process. The bar itself is coded to be flexibly sized through CSS, and will scale to fit inside its parent container by default.

References

41 questions
0
votes
1 answer

jQuery progressbar with ajax request to json

I need some help with an ajax request and the use of data in a jQuery progressbar. Here is the index.html
Here is the test.json { "progressbar":12 } Here is the JavaScript code $(function() { $.ajax({…
Jason
  • 11
  • 1
  • 4
0
votes
1 answer

Background-clip not working in my code. (Border-Radius/Background bleeding issue)

I'm trying to style the default progressbar skin of jquery-ui. Unfortunately I've discovered an issue that is known as "background bleeding". Apparently the solution for this problem is to use: -moz-background-clip: padding;…
Sora
  • 73
  • 7
0
votes
1 answer

jQuery UI progress bar did not work in Loop in IE 11 and Chrome

I am using jQuery 1.7.2 and jQuery-ui is 1.10.4. My code works perfectly in FireFox. My code for jQuery as below. $(document).ready(function () { $("#progressbar").show(); $("#progressbar").progressbar({ value: false }); …
Milind
  • 1,855
  • 5
  • 30
  • 71
0
votes
1 answer

PHP Ajax jQuery UI Progressbar for Long Running MySQL operation

I have a PHP script that takes a long time to execute because every operation has to do SOAP call to another website. I would like to add a progressbar indicator so that I can see the % complete of this script. I believe the way to do this is to do…
Eugene van der Merwe
  • 4,390
  • 1
  • 35
  • 48
0
votes
1 answer

How to modify jQuery progressbar color in ASP.net gridview?

I have a Gridview with a column that contains progressbar value. I managed to display the progress for each row but I'm looking for a way to alter the color of progress bar based on another column with Boolean value ( True/False ). If value is True…
Poorya
  • 1,291
  • 6
  • 27
  • 57
0
votes
1 answer

Is the number of "records" in a json file known when calling .getJSON()?

I want to use a jQueryUI progress bar when I'm reading a very large json file. Is the number of "records" in the file known when calling getJSON(), so that I can advance the progress bar accordingly?
0
votes
1 answer

JQuery showing too many decimals

I have this code for a progress bar but the .progress-labelis showing too many decimals, something like (2.020302032400%). My code looks like this