mobx-react-form icon indicating copy to clipboard operation
mobx-react-form copied to clipboard

Reactive MobX Form State Management

Results 86 mobx-react-form issues
Sort by recently updated
recently updated
newest added

Bumps [ajv](https://github.com/ajv-validator/ajv) from 5.5.2 to 6.12.3. Release notes Sourced from ajv's releases. v6.12.3 Pass schema object to processCode function Option for strictNumbers (@​issacgerges, #1128) Fixed vulnerability related to untrusted schemas...

dependencies

Hi, My code: ```javascript @computed ready = false ... { this.ready ? this.ready = false} /> : null } ``` Demo steps: 1. Select "Nested Fields". 2. Scroll to end...

fix

**tl;dr:** Be careful when naming any custom DVR validation rules, avoid starting rule name with "required", "same" or "different" We're in the process of upgrading from v1.35.1 to 2.0.9, in...

My current code uses version 1.33.0. I have a strategy for select fields where I stored a options mapping function for select fields to be able to pull option data...

If you have multiple forms instantiated, custom DVR rules registered, and if you pass in form instance to the rules, once validation kicks in, rules will receive invalid form instance....

fix

Hello there. I have form with field with switch ```disabled``` state. I used this options ```javascript retrieveOnlyEnabledFields: true, validateDeletedFields: false, validateDisabledFields: false ``` I need display errors count for active...

enhancement

https://codesandbox.io/s/form-quickstart-forked-5qm1s trying to use form props in computed props, but value is not refreshed. ``` get sumbitingOrValidating() { return this.form.submitting || this.form.validating; } ```

Hello, I'm using server validation approach : submit form -> fetch errors from server -> populate form with errors and I came up with "key" issue. The problem is in...

I'm trying to translate the form labels with the i18n(v9) t function, however when i try to export my file like this: ` export default withNamespaces()(UploadForm); ` I get an...

`clear` - leaves empty elements in arrays. `reset` - leaves added elements in arrays and `isDirty` flag. `defaults`, `initials` - return modified arrays. it's visible even on demo page https://foxhound87.github.io/mobx-react-form-demo/demo.html

enhancement