-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Ability to configure / change the loading state in the tab: "Updating..." #732
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I propose adding a config store option and adding a config value to |
It would also be nice to simply have a CSS class added while loading is happening, i.e. |
This would be a great improvement especially when it comes to displaying live data with small intervals (like 100ms). I would like to offer my help implementing this. Maybe someone of the core developers could give a hint where to start. I still couldn' t figure out where in the code the title is changed. I really like the idea of @chriddyp to add an attribute in the config:
|
The title is set in DocumentTitle.react.js:
Changing the text brings the desired effect. I just need to figure out how to add a property in Python that can be set. |
This feature is now available in |
Right now,
dash-renderer
updates the page tab whenever there is a request in flight.For fast updating callbacks, e.g.
dcc.Interval
, this becomes pretty annoying: https://community.plot.ly/t/how-to-avoid-updating-html-browser-title-when-using-interval-event/15379This is one of the few "hardcoded" features in Dash that we should make configurable:
config
option to turnon
/off
or change the textdash-renderer
and attempt to roll it in to loading states. However, loading states are currently configurable only per-component, not across the entire app.Seems like (1) would be the way to go right now. It could be something like
The text was updated successfully, but these errors were encountered: