I have java applet with JTable. Due to lots of data and poor network bandwidth it takes lots of time to perform any operation like load the table or change it.
I'm thinking about adding sort of activity indicator to let user know that his request is processing.
Before i use JProgressBar, I'd like to know whether there are other options like ajax activity flower.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||
|
|
The easiest way would be setting a (not animated) WAIT_CURSOR
see http://www.catalysoft.com/articles/busyCursor.html For an animated cursor see: http://book.javanb.com/swing-hacks/swinghacks-chp-12-sect-2.html |
|||||
|
|
|
|||
|
|
|
You can use JBusyComponent for this. Just wrap your Table or the Scrollpane in the JBusyComponent. But remember to load the data outside the event dispatch thread. For this you can use the SwingWorker as suggested in the other answer. JBusyComponent already provides a BusySwingWorker for this. |
|||
|
|
