I’m trying to hook up Dash DataTables with a dataset API (GET only) that allows users to interact with the dataset. This would require a user to pass through keywords for the datasets they are looking for through the URL. The list of these datasets would also be added and subtracted over time, so hard coding each layout/route is out of the question.
Is there a way (either using flask as the server, or a specifically Dash-based app) that would allow for this kind of dynamic routing and loading of datasets? Or am I better off just using JQuery DataTables?
I’m not sure if this is what you are looking for, but I think if it’s the same app but just different URL query parameters then then you can inspect the dcc.Link at callback time and flask.request.headers.get('Referer', '') at layout time.