cp icon indicating copy to clipboard operation
cp copied to clipboard

radio组件的disable

Open changyuqing opened this issue 5 years ago • 0 comments

目前的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'
        }
    ]
}

changyuqing avatar Apr 23 '20 04:04 changyuqing