You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to make a Sparkline work with server push (from Vaadin 7.1), but I
had to call markAsDirty() after setting the value.
So this didn't work:
ui.access( new Runnable() {
@Override
public void run() {
sparklines.setValue( new_data );
}
} );
This did:
ui.access( new Runnable() {
@Override
public void run() {
sparklines.setValue( new_data );
sparklines.markAsDirty();
}
} );
Versions:
Vaadin: 7.1.11
Sparklines: 7.0.2
Original issue reported on code.google.com by [email protected] on 14 Feb 2014 at 7:18
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 14 Feb 2014 at 7:18The text was updated successfully, but these errors were encountered: