Can form be embedded in a vertical viewport? #455
-
What if form is too tall to fit in its given height? Does a form element make a visibility request? Maybe, I'm supposed to split one form into multiple forms and make a visibility request for each one? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
This is a bit unrelated to the viewport question, but for this question, the answer is that the form will only render what it can, from to bottom.
No, but it would be pretty easy to add that in your application by using formFocus and visible to focus the currently-focused field in your drawing routine. |
Beta Was this translation helpful? Give feedback.
-
Ah yes, sorry about that.
I think this is actually what I was thinking of, and I forgot the exact type. Since you can just as easily access the form state in your event handler, this is probably the best way to go. |
Beta Was this translation helpful? Give feedback.
Ah yes, sorry about that.
visible w
means "makew
visible if you can."I think this is actually what I was thinking of, and I forgot the exact type. Since you can just as easily access the form state in your event handler, this is probably the best way to go.