简体   繁体   English

Extjs组合默认值?

[英]Extjs combo default Value?

                               {
                                            xtype:'combo',
                    name : 'policyId',
                    fieldLabel : 'policyTyep',
                    padding : 'padding-left: 20%',
                    displayField : 'analysisName',
                    valueField : 'analysisId',
                    queryMode : 'local',
                    //value:-1,
                    value: {analysisName:'Select..',
                            analysisId:0},
                    store : policyDetailTypeStore
                }
                       If I the policyDetailTypeStore is loaded ,but have no data.

then I want to show "Select..." in the combox.I also have configure the value as the code, but Can't work at all.. 然后我想在combox中显示“Select ...”。我也将值配置为代码,但根本无法工作..

you should actually be using the emptyText config attribute for this 你应该实际使用emptyText配置属性

{
   ...
   emptyText : 'Select ...',
   ...
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM