I have a scenario where I need to create multiple callbacks functions and there is a possibility to replicate that using double for loops but it doesn’t work. It seems to be working fine with a single for loop or without any, but with double for loops, the dash app doesn’t seem to create these callbacks.
for i in range(5):
for j in range(5):
@app.callback(Output(‘i-j’,‘children’),[Input(…)])
def foo(value):
pass
I want to know is that even possible to do so with Dash?
Best