Hi all,
I am using the textarea object or element from Dash Mantine Components (dmc) in my dash multipage setup.
The dmc textarea comes with the comfort of autosize which is not supported by the dash core components. However, the dmc textarea also comes with a catch… It does not have a focus property.
I would like to set the focus on it via a callback function.
I already tried an alternative approach by using a clientside_callback function to try to set the focus with js on it. However, since I am in a multipage setup, the textarea and the callback are living in one of the subpages. clientside_callback only recognizes elements in the layout of the app.py.
Therefore, I wanted to ask if you have any ideas/workarounds how to do that