I followed the example by creating the following structure, to create multiple dashboards each one implemented within app.* but it does not seem to show the graphs (the links do work and the layout seems to be right) however the @app.callback do not seem to be executed to refresh graphs based on the input in from - to date control (using my-date-picker-range component).
Hey! I am actually struggling with the same issue. Do you have multiple callbacks per app? Currently working on a team where there are several people making visualizations and the one causing the issue has more 3+ callbacks. If thereâs a similarity there, we mightâve narrowed down part of the problemâŚ
Hi, @chriddyp! Thanks so much for looking into this. It was funny, because as I was typing this response to you, I was able to figure it out.
Here was the issue: Since I was taking dashboards from my coworkers, I was incorporating them as is into the server I made to handle multiple dashboards (using the great example you gave here, actually).
Exceptâand Iâm âfacepalmingâ nowâof course each of those individual dashboards were set up to run independently with their own servers before being sent to me. I needed to incorporate them into the app.py file from that multiple dashboards example, and eliminate the oldapp references in the individual dashboard files. Doh!