问题描述
- Ext的combox数据选择问题
-
问题是我想要在expand后不选任何选项,自动显示的是emptyText而不是store里的第一条数据,而且虽然显示了第一天数据,但是combox的value却是空值,其中store是个JSONstore{
xtype : 'combo',
name : 'printstatue',
id : 'printstatue',
mode : 'local',
emptyText : '-请选择-',
fieldLabel : '打印状态',
labelWidth : 60,
store : status,
loadWhenRender : false,// 控件实例化后就开始搜索(如果selectFirstRow为true 则此设置无效)
selectFirstRow : false,// 默认选中第一条数据
valueField:'N_GGZT',
displayField : 'C_GGZT',
width : 140,
listeners : {
expand : function(combox) {
combox.reset();
}//,
/*change:function(combox,newValue,oldValue){
if(newValue=="") {combox.setValue(newValue);combox.collapse();combox.clearInvalid() ;}
}*/
}
}