Hi all,
I am building a panel-plugin and like to show the progress of determining Geo-Data.
Unfortenetly the k-progress bar won’t update, but a normal html-progress bar does,
by the same variable.
Any idea if i made a mistake or how i can update a ‘k-progress’ ui?
Update: same behavior, if i use k-progress outside k-dialog. no update ![]()
Tnx in advance.
<k-dialog ref="dialogProgress">
<template>
...
<progress :value="progress" max="100" />
<k-progress :value="progress" />
...
</template>
</k-dialog>
...
this.progress = Math.round(100 * this.stores/this.storesTotal);
...
