如何在extjs中为组合框引入不带冒号的fieldLabel

如何在extjs中为组合框引入不带冒号的fieldLabel,extjs,extjs4.1,sencha-architect,Extjs,Extjs4.1,Sencha Architect,有人能告诉我如何在extjs中为组合框添加不带冒号的fieldLabel吗 谢谢使用labelSeparator:“配置combobox来修复此问题 参考下面的例子 Ext.create('Ext.form.ComboBox', { fieldLabel: 'Choose State', store: states, queryMode: 'local', displayField: 'name', valueField: 'abbr', labe

有人能告诉我如何在extjs中为组合框添加不带冒号的fieldLabel吗

谢谢

使用labelSeparator:“配置combobox来修复此问题

参考下面的例子

Ext.create('Ext.form.ComboBox', {
    fieldLabel: 'Choose State',
    store: states,
    queryMode: 'local',
    displayField: 'name',
    valueField: 'abbr',
    labelSeparator : "",
    renderTo: Ext.getBody()
});
谢谢,肯定会有用的