refreshCursor

force repainting of all bound components with current cursor value

void refreshCursor();

Example

store.setCursor(10);
/* after some time */
store.refreshCursor();

Details

You need not call refreshCursor after changing cursor by setCursor or other api.

The only case when refreshCursor has sense - you need to refresh bound component without changing cursor.

Back to top