#How to define a textbox that auto-scrolls to the bottom?
1 messages · Page 1 of 1 (latest)
You can scroll to a specific element in the page with the onmounted event: https://github.com/DioxusLabs/dioxus/blob/main/examples/scroll_to_top.rs
Do you want a textbox you can only read and not input characters into?
Thank you for the response. Yes I want a textbox that is read only by the user, but the application itself will write/update to the textbox.
I will give onmounted a try and might have further questions.
Many thanks again,
Oh I realized scroll_to is to scroll to an element, but what I am looking for is to scroll to the end of a multi-line text, in a textbox: Does Dioxus provide such support?