发布网友 发布时间:2022-04-22 04:16
共2个回答
热心网友 时间:2024-03-11 23:11
Ext.form.ComboBox 这是Ext控件
var comboxType = new Ext.form.ComboBox({
allowBlank: true,
store: msgtypeStore,
hiddenName: 'value',
displayField: 'displaName',
valueField: 'messageValue',
editable: false, //是否允许输入
typeAhead: true,
mode: 'local', //从本地加载数据
forceSelection: true,
triggerAction: 'all',
emptyText: '请选择消息类别...',
width: 75,
selectOnFocus: true,
listeners: {
afterrender: function() {
},
select: function() {
}
}
});
editable 通过这个属性来控制追问问一下。这个控件怎么用呢?
追答这就是一个Ext控件,Ext.form.ComboBox 这个控件有个属性叫rendTo 这可以指向到渲染的元素上面,如果你没搞过Ext,那你就只能自己重写一下DropDownList 控件,完全可以自己写一个控件的!
热心网友 时间:2024-03-11 23:11
DropDownList不就有这个功能么?winform还是页面啊?