Loading bar not working as expected #17955
Replies: 1 comment
-
It looks like the solution was to call |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a file upload component where i can monitor percentile progress. I am using
<q-ajax-bar ref="uploadbar" position="bottom" color="accent" size="10px" skip-hijack/>
where I call thestart
method andstop
method via reference. Progress is done via theincrement
method. Whether i use exact percentage for the increment method or i just compute difference ofold-new
to actually only increment the bar's progress, the bar never works properly. It just loads at its own pace and has nothing to do with the actual percentage. Like, the bar will cover the whole screen(ie, it is complete) but the file is only at 20%. So I have no idea how this component is supposed to be working but neither way works right now.Beta Was this translation helpful? Give feedback.
All reactions