41 questions
0
votes
1
answer
1k
views
Toastr Spinner animation
How to make progress-bar reverse animation left to right?
$(document).ready(function() {
toastr.options = {
'closeButton': true,
'debug': false,
'...
0
votes
0
answers
170
views
JQuery Multistep Progress-Bar: next_fs Problem
we use a multi-step form with a progressbar. For some reason, the progressbar doesn't add the class="active" to the 2nd step after the first button click, but jumps right to step 5.
Can you see my ...
0
votes
1
answer
718
views
Increase size of pie charts (width and height) created by progressbar.js
I am using https://github.com/yxfanxiao/jQuery-plugin-progressbar to draw animated pie charts, using the exact codes below:
JS:
;
(function ($) {
$.fn.loading = function () {
var ...
2
votes
1
answer
93
views
Add limit bar on my progress circle with progressbar.js
I got a circle bar like this example : JsFiddle and I would like to add a limit bar like this : Circle Bar
But I want a limit bar alterable with a value like with : "bar.animate(value);" for the blue ...
1
vote
1
answer
4k
views
how to show a progress bar in the jsp page representing the execution of a java servlet
I came across my posts which answer this question.But i am not able get an idea of how i can implement in my program.My requirement is as follows.
from a jsp page i call a servlet using ajax call:
$(...
0
votes
1
answer
39
views
Jquery UI Progressbar filling reduced progress
$.get('jobs', {
}, function (responseText) {
rt = JSON.parse(responseText);
console.log(rt);
for (i = 0; i < rt.length; i++)
{
$("#jobs").append("<...
0
votes
0
answers
237
views
Progress Bar | jQuery UI - JS UI
Currently:
Click "Start Download" button
"File Download" box displays
Download starts
Progress indicator begins and runs to 100%
Box indicates "Complete"
I have been unsuccessful at modifying the code ...
2
votes
1
answer
2k
views
showing Progress bar on long running for loops in IE
I have a JSON array with around 2000 records and I need to build a table to display the data from these records.As it has large amount of data the processing may cause the browser to freeze.So I was ...
0
votes
1
answer
2k
views
jQuery Progress Bar: animate-reset-animate
I have a progressbar which is being animated in a mouseover event in the following way:
$("#progressbar .ui-progressbar-value").animate({width: 200}, {duration: 3000},'slow')
Then in a mouseout event ...
0
votes
1
answer
625
views
JQueryUI Progress Bar doesn't maintain value after update via form submit
I'm trying to set up a JQuery Progress Bar to update when the user submits a form (the final code will be more complex and dynamic, but I'm just trying to learn how the progress bar works first).
The ...
1
vote
2
answers
2k
views
jquery-ui : detect first time change in input
I was trying to make jquery-ui progress bar which shows progress with filling inputs in form. My code is as following:
html:
<div id="progress" class="progress"></div>
//form and ...
0
votes
1
answer
4k
views
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
<div id="progressbar"></div>
Here is the test.json
{ "progressbar":12 }
Here is ...
0
votes
1
answer
361
views
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-...
1
vote
0
answers
182
views
Jquery Progress Bar: Issue with implementing progress Bar
I'm having a problem with implementing the progress bar using the jquery UI progressbar widget. The actual bar in the widget is not loading in real time. It just jumps to the end bar when the timer is ...
3
votes
0
answers
2k
views
jQuery multi-colored progress bar
This is not so much a question rather than information I wish to share in the hopes that it may help others with jQuery progress bars.
I was recently asked to create a progress bar that would ...