We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.依赖仓库的版本:
2. picker类的表单项设置disabled无效:
3.出现问题的 schema demo:
const schema = { type: 'object', properties: { cascader: { title: '级联', type: 'array', widget: 'cascader', props: { disabled: true, options: [ { label: '浙江', value: 1, children: [{ label: '杭州', value: 2 }], }, ], }, }, picker: { title: '选择', type: 'string', widget: 'picker', props: { disabled: true, options: [ { label: '火车', value: 1 }, { label: '飞机', value: 2 }, { label: '火箭', value: 3 }, ], }, }, date: { title: '日期', type: 'string', widget: 'datePicker', props: { disabled: true, precision: 'month', }, }, }, }
4.复现 demo: https://stackblitz.com/edit/react-anszig?file=App.tsx
The text was updated successfully, but these errors were encountered:
lhbxs
No branches or pull requests
1.依赖仓库的版本:
2. picker类的表单项设置disabled无效:
3.出现问题的 schema demo:
4.复现 demo:
https://stackblitz.com/edit/react-anszig?file=App.tsx
The text was updated successfully, but these errors were encountered: