Dynamic inputs to callback

Hello there,
I have a table built using dash html components - html.table(). There are three radio buttons in every row of the table. The number of rows in the table are dynamic based on other selections. So the IDs for radio buttons in every row in the table is also assigned dynamically in runtime. But since the callbacks need to be predefined before runtime, and I do not know the number of rows in the table before hand, how do I define the callbacks (number of inputs to the callback) ? Could you please give me some idea on how to approach this?

Thank you.

Hi @samyu

If I understand your problem, you need to learn this page:
https://dash.plotly.com/pattern-matching-callbacks

Thank you @Eduardo
This helped.