foxhound87 / mobx-react-form

Reactive MobX Form State Management
https://foxhound87.github.io/mobx-react-form
MIT License
1.1k stars 129 forks source link

Some observable's in form are not updating #513

Closed ether9 closed 5 years ago

ether9 commented 5 years ago

I'm using the example code with the devtools package and the following variables are not being updated in the form component as they are in the live demo.

submitting validating clearing resetting

Form submission and field validation seems to be working.

using: "react": "^16.9.0", "mobx": "^5.13.0", "mobx-react": "^6.1.3", "mobx-react-form": "^2.0.4",

foxhound87 commented 5 years ago

maybe you don't see them changing because the change is instantaneous. you can try to listen to the properties changes using mobx.

foxhound87 commented 5 years ago

In the live demo you can see them changing because there's an async validation.