Methamane
Methamane
Hello @2shady4u, I'm not sure if it's related to the original issue but I'm also having problems with using the addon. ### Environment: - OS: MacOS 12 (M1 Mac Mini)...
> > Hello @2shady4u, I'm not sure if it's related to the original issue but I'm also having problems with using the addon. > > ### Environment: > > ```...
Hey @sedenka, Thanks, I'm currently sticking with right click as it is text in a table so I prefer it to look like plain text.
Hey @Mantanium , I was able to make `clearable` work by connecting the `update:model-value` signal. ```python def on_model_value_changed(event): ui.notify(event.get("args")) with ui.input(label="Username", placeholder="Enter your username") as username: username.props("clearable") username.on("update:model-value", on_model_value_changed) ```