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
目前的radio组件组件如果需要disable的话,需要在每一个option中单独的配置,能不能通过在顶层中传入disbale的方式进行全部选项的disable。
目前:
{ 'type': 'Radio', 'label': '水果', 'model': 'fruit', 'options': [ { 'label': '苹果', 'value': 'apple', 'disabled': true }, { 'label': '桃子', 'value': 'peach', 'disabled': true } ] }
希望:
{ 'type': 'Radio', 'label': '水果', 'disabled': true, 'model': 'fruit', 'options': [ { 'label': '苹果', 'value': 'apple' }, { 'label': '桃子', 'value': 'peach' } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
目前的radio组件组件如果需要disable的话,需要在每一个option中单独的配置,能不能通过在顶层中传入disbale的方式进行全部选项的disable。
目前:
希望:
The text was updated successfully, but these errors were encountered: