Hi all, I am making a dashboard that contains many different radio buttons and dropdown to parametrize a model. This model can receive a configuration file (yaml format) and import it when clicking an import button, which will update the fields (Dash input components and radio mainly) you can otherwise fill manually.
My problem is that it conflicts with some dynamic modifications of those fields when selecting some options of the main parameters (to make it more user-friendly and have some auto-filling). Indeed both importing the configuration (and thereby setting values in the GUI) and modifying dynamically the displayed values due to some options being selected in other components requires to use components’ value as Output in different callbacks, which in not possible.
I have read that I could put everything in a general router callback and launch method based on the event that triggered it, but then I would need some radio buttons’ value to be both input and output of that function, which is not possible neither.
Is there really nothing I can do or is there any smart way to go around this ? Thanks for your help 