-
|
I need to input text with autocomplete, so I can create copy of Dropdown class with modification that catch "_on_message" event, but "Dropdown-builtin" class in fronted assets does not send messages on keypress. So, I need can't figure out, how to override it without changing package. Is it possible? |
Beta Was this translation helpful? Give feedback.
Answered by
mad-moo
Jul 25, 2024
Replies: 1 comment 2 replies
-
|
Hey! I think your best bet might be creating your own component. Have you tried adding a |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry, that's not what I meant. I don't think you need to resort to custom HTML. Just create a python class, and inherit from
rio.Component, like all components do.In that class, combine a
rio.TextInputwith ario.Popup. I think that should work for your use case