我从服务器加载表单数据并用它填写表单。
var form = this.getPForm().getForm().load({
url: '/url',
params: {
id: record.get('id'),
},
});
一切正常,除了一个复选框,即使它的输入数据是true
{
fieldLabel: 'name',
name: 'name',
minLength: 5,
maxLength: 80,
}, {
xtype: 'checkbox',
fieldLabel: 'Yes?',
name: 'yes',
inputValue: '1',
uncheckedValue: '0',
listeners:{
change:function(c){
alert(c.getValue());
}
},
},
在表单加载时,我收到true
警报消息,通知表单数据已达到checkbox
并且正在更改。但是复选框没有被选中!