我想实现这种行为:
如果表单面板中的字段(组合、文本、日期...)的自定义属性设置为 true
{
xtype: 'textfield',
fieldLabel: 'Name',
name: 'Name',
customProp: true
},
然后在实际组件后面添加一个按钮或其他组件。用 json 写成这样:
{
xtype: 'container',
margin: '0 0 8 0',
layout: 'hbox',
items: [
{
xtype: 'textfield',
fieldLabel: 'Name',
name: 'Name',
},
{
xtype: 'button',
text: 'xxx',
tooltip: 'I\'m a custom tooltip'
}
]
}
我想知道我怎么能做到这一点。这甚至可能吗?