Hi, I know that I can’t have multiple callbacks to the same output, but I’m confused about what to do in the meantime.
I have a datatable and want ability for users to either click on AddRow to append a row and then be able to type numbers in directly, or click on Upload to get a CSV and populate all in one go. I can do either one of these with a callback, but…
… what would be recomendations or hints to optimal solution?
You group all operations related to an output into one callback. In some cases this can make the code less readable, so I have written a small utility class DashCallbackBlueprint that takes care of it. Here is an example,