define([ 'react', ], ( React ) => { const FormFieldCheckbox = React.createClass({ onValueChange: function (e) { e.target.value = this.refs.checkbox.checked ? '1' : '0'; return this.props.onValueChange(e); }, render: function () { if (this.props.field.values === undefined) { return false; } // isChecked will be true only if the value is "1" // it will be false in case value is "0" or empty const isChecked = !!(Number(this.props.item[this.props.field.name])); const options = Object.keys(this.props.field.values).map( (value, index) => (

) ); return (
{ options }
); }, }); return FormFieldCheckbox; });