调整在其中创建标记域的面板的大小后,标记域的调整大小事件不会触发。下面是代码的一部分
Ext.application({
name: 'Fiddle',
launch: function () {
var shows = Ext.create('Ext.data.Store', {
fields: ['id', 'show'],
data: [{
id: 0,
show: 'Battlestar Galactica'
}, {
id: 1,
show: 'Doctor Who'
}, {
id: 2,
show: 'Farscape'
}, {
id: 3,
show: 'Firefly'
}, {
id: 4,
show: 'Star Trek'
}, {
id: 5,
show: 'Star Wars: Christmas Special'
}]
});
var panel = new Ext.panel.Panel({
layout: {
type: 'vbox',
align: 'stretch'
},
items: [{
xtype: 'textfield',
fieldLabel: 'One Two Three Four Five Six Seven',
labelAlign: 'top',
width: '100%'
}, {
xtype: 'tagfield',
fieldLabel: 'One Two Three Four Five Six Seven',
labelAlign: 'top',
store: shows,
displayField: 'show',
valueField: 'id',
queryMode: 'local',
filterPickList: true,
width: '100%',
listeners: {
resize: function () {
debugger, //the event is not fired
}
}
}]
})
var window = new Ext.Window({
layout: 'anchor',
title: 'Hello resizer',
resizable: {
dynamic: true
},
draggable: true,
scrollable: 'vertical',
items: [panel],
width: 400,
height: 200,
});
window.show();
}
});发布于 2021-02-03 01:29:26
正如接口docu中所说:此事件不会在使用cfg-liquidLayout的组件上触发,例如Ext.button.Button和Ext.form.field.Base。
https://stackoverflow.com/questions/66014471
复制相似问题