Let’s say I have a simple schema within react-jsonschema-form – with one textfield and a checkbox.
<code>const schema = {
type: 'object',
properties: {
name: { type: 'string' },
disableInput: { type: 'boolean' },
},
} ;
</code>
<code>const schema = {
type: 'object',
properties: {
name: { type: 'string' },
disableInput: { type: 'boolean' },
},
} ;
</code>
const schema = {
type: 'object',
properties: {
name: { type: 'string' },
disableInput: { type: 'boolean' },
},
} ;
Would it be possible to define the uiSchema in a way that allows disabling the textfield if the checkbox is clicked, is it possible to have conditional login within it?
New contributor
Mortal Wombat is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.