EXTJS5绑定无线组

4urapxun  于 2022-09-26  发布在  其他
关注(0)|答案(2)|浏览(122)

有几天,我试图构建一个允许绑定无线组的代码。
然而,尽管我做出了努力,但我没有成功。
我的代码中缺少什么?
你能帮我吗?
小提琴:
https://fiddle.sencha.com/#fiddle/bao

raogr8fs

raogr8fs1#

我得到了更少的代码。在这种方法中,两个组件用较少的代码连接。

{
    xtype: 'radiogroup',
    reference: 'startTimerEndType',
    publishes: 'value',
    fieldLabel: 'Test',
    columns: 1,
    vertical: true,
    items: [
        {boxLabel: 'One', name: 'box', inputValue: '1', checked: true},
        {boxLabel: 'Two', name: 'box', inputValue: '2'},
        {boxLabel: 'Three', name: 'box', inputValue: '3'},
    ]
},{
    xtype: 'numberfield',  
    hidden: true,
    bind: {
        visible: "{startTimerEndType.value.box==3}"
    },
}
trnvg8h3

trnvg8h32#

一旦值发生更改,您需要检查无线组,在ViewModel公式中,您需要找到第一个选中的值,并返回boxLabel。在这里查看您的更改小提琴

相关问题