-
Hi there, I'm just starting to play around with Reflex and was going through the Chat App tutorial, but I'm having trouble with the form field behavior when trying to use a label. Here's a reference on codepen of what I'm trying to achieve: a text input with a programmatically associated label (so the input receives focus when you click the label) that you can interact with by typing into it. I started with this basic example, which seems to work, but when I start using state, I run into two problems:
It seems like I'm not grasping something about state and how it works, so I appreciate any help pointing me in the right direction. I have this here on a repl and the code pasted below.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @pglevy, |
Beta Was this translation helpful? Give feedback.
Hi @pglevy,
This seems to be a bug.
When both
value
andon_change
are definedrx.input()
returns aDebounceInput
, which should also be allowed byrx.form.control()
.