If I render:
<Input type="text" validate={this.state.validation} instance={this.state._addr} propertyKey="street" rules={{presence: true}} >
The field displays the value, but when I delete (backspace) the last remaining character from the field I get:
Warning: A component is changing a controlled input of type text to be uncontrolled. Input elements should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://fb.me/react-controlled-components
Thanks again for this,
If I render: <Input type="text" validate={this.state.validation} instance={this.state._addr} propertyKey="street" rules={{presence: true}} >
The field displays the value, but when I delete (backspace) the last remaining character from the field I get:
Warning: A component is changing a controlled input of type text to be uncontrolled. Input elements should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://fb.me/react-controlled-components