Fork me on GitHub
#reagent
<
2015-07-29
>
lazy-lambda20:07:14

I have a input field which has value set from my app-db. So I can’t type in anything in the input field.

lazy-lambda20:07:39

It feels like the input field is disabled, but actually it’s re-rendering on changes.

lazy-lambda20:07:55

So how can I type in an input field ?

gadfly36120:07:17

The input value should be a deref from your app-db, then you need something that updates app-db as you type (like :on-change).

lazy-lambda20:07:29

@gadfly361: You are awesome as always.