Closed stavenko closed 8 years ago
Hello, I just used your tutorial to customized controls in forms:
function Label({label, schema}){ console.log("LLLL"); return <BaseLabel className='col-xs-6' label={label} schema={schema} /> } function Field(props){ console.log("FFFF", props); return <BaseField {...props} className='form-control' Label={Label} /> }
I can see 'FFFF' with properties in my console, but I never seen, that LLLL has printed. I have used react-forms@2.0.0-beta11
react-forms@2.0.0-beta11
Gladly give you more detailed explanations.
PS: className='form-control' on input is never displayed too. Seems like customization broken at all.
className='form-control'
I've updated the docs, see Customizing form fields section.
Hello, I just used your tutorial to customized controls in forms:
I can see 'FFFF' with properties in my console, but I never seen, that LLLL has printed. I have used
react-forms@2.0.0-beta11
Gladly give you more detailed explanations.
PS:
className='form-control'
on input is never displayed too. Seems like customization broken at all.