Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Two-way binding with checkboxes always returns "on"

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).

like image 913
m_vdbeek Avatar asked May 14 '14 21:05

m_vdbeek


People also ask

Does checkbox return true or false?

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.

What does a checkbox input return?

<input type="checkbox">


1 Answers

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!

like image 61
Douglas Avatar answered Sep 19 '22 17:09

Douglas