[Kino] Is it possible to update input elements programatically? #2513
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @clayscode, do you have a specific use case? There are several reasons why I would rather not cross that bridge:
|
Beta Was this translation helpful? Give feedback.
Hey @clayscode, do you have a specific use case?
There are several reasons why I would rather not cross that bridge:
this could introduce a weird cyclic dependency in change tracking. Specifically, if a later cell changes the input, this would in turn make some subsequent cells stale. If this happens async, then it's even more weird and messes with reproducability
depending on whether the input is inside form or standalone it is per-user or shared. So we would need a way to handle both cases, but that input struct itself doesn't even know which one it is
for some inputs the values are specific enough that they would be hard to reproduce for the user, without introducing more APIs. I…