handleRedrawOn method
Redraws the component for a given store
.
Called whenever an event is emitted by one of the stores returned by
redrawOn
that don't have custom store handlers (defined in
getStoreHandlers
).
Override and call super to add custom behavior.
Implementation
@mustCallSuper
@protected
void handleRedrawOn(Store store) {
redraw();
}