I'd like to know if possible to show a spinner while the application is making some calculations.
I'm using a slider bar to modify an svg image. I call the function which makes the calculations to modify the svg image when the MouseUp event is fired. Now, since the image is made of a lot of svg paths, it takes a while (around 1s) until the svg image is updated; here's where I want to show the spinner, to let the user know the application is processing data. Btw, when I say "updating the svg image" I'm actually deleting the current svg paths and creting/adding new paths to the DOM.
I created a widget to show the spinner, it extends the class PopupPanel. I read that to handle a widget, it has to be added to the DOM first, so I'm creating and hiding that widget in the View's contructor (I'm using MVP), so when the application is processing I just would need to call the function show().
Is it possible to achieve what I want?