redux-form-material-ui icon indicating copy to clipboard operation
redux-form-material-ui copied to clipboard

redux form Field component not rendering all the properties when i passed RadioButtonGroup component

Open sivakumarl opened this issue 8 years ago • 0 comments

Hi Team, I am facing issue while pulling values from the radio button with redux Filed component because the name attribute for the radio button is not adding . so form data not able to find the value because the input field doesn't built with name property. Please help

<Field name="sex" component={RadioButtonGroup}>
<RadioButton value="male" label="Male"/>
<RadioButton value="female" label="Female"/>
</Field>


 <input type="radio" value="male" style="position: absolute; cursor: inherit; pointer-events: all; opacity: 0; width: 100%; height: 100%; z-index: 2; left: 0px; box-sizing: border-box; padding: 0px; margin: 0px;"><div style="display: flex; width: 100%; height: 100%;">

 <input type="radio" value="female" style="position: absolute; cursor: inherit; pointer-events: all; opacity: 0; width: 100%; height: 100%; z-index: 2; left: 0px; box-sizing: border-box; padding: 0px; margin: 0px;"><div style="display: flex; width: 100%; height: 100%;">

sivakumarl avatar May 13 '17 21:05 sivakumarl