I'm trying to reproduce a simple two-way binding example in the React.js framework by following this official tutorial: "Two-Way Binding Helpers".
I created a "MyCheckbox" component that looks like this:
var MyCheckbox = React.createClass({
mixins: [React.addons.LinkedStateMixin],
getInitialState: function () {
return {
fieldname: '',
value: this.props.value
};
},
render: function () {
var valueLink = this.linkState('value');
var me = this;
var handleChange = function (e) {
valueLink.requestChange(e.target.value === 'on');
};
return React.DOM.input({
type: 'checkbox',
checked: valueLink.value,
onChange: handleChange,
});
}
});
"MyCheckbox" is rendered the following way:
React.renderComponent(MyCheckbox({
value: false
}), document.body);
When rendering the first time, everything works as expected, if the value is true
, the checkbox will be checked, if the value is false
then it will not.
If you initialise the checkbox as being unchecked and then check it, everything works fine.
The issues it that when clicking the checkbox to uncheck it, e.target.value
is always 'on'.
I also wanted to ask what differences are there between the ReactLink Without LinkedStateMixin and ReactLink Without valueLink methods of data-binding ?
Any ideas ?
I use the latest React.js version (v0.10.0
).
The Input Checkbox defaultChecked property in HTML is used to return the default value of checked attribute. It has a boolean value which returns true if the checkbox is checked by default, otherwise returns false.
<input type="checkbox">
The "value" property on a checkbox is fixed, in the old days it was the value that was submitted along with the form only if the checkbox was checked.
The quick fix is this instead:
valueLink.requestChange(e.target.checked);
The valueLink only works when it is the value of the input that changes. Turns out that to link to the checked property, the checkedLink needs to be used instead:
render: function () {
return React.DOM.div(null, [
React.DOM.input({
type: 'checkbox',
checkedLink: this.linkState('value'),
}),
React.DOM.span(null, "state: " + this.state.value)
]);
}
Seems a shame that the valueLink can't be used for both!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With