Ext.form.combobox上的标签

时间:2015-12-01 14:36:07

标签: javascript extjs

你好,

有人可以向我解释如何在form.combobox中输入标签来显示ComboBox的名称?

new Ext.form.ComboBox({
    id             : 'searchCombo',
    displayField   : 'nome',
    tpl            : new Ext.XTemplate(
                        '<tpl for="."><div class="x-combo-list-item">',
                        '{nome}',
                        '</div></tpl>'
                    ),
    valueField     : 'id',
    anchor         : '100%',
    queryParam     : 'termo',
    forceSelection : true,
    store          : new Ext.data.JsonStore({
        url           : server + 'pessoa/dados/',
        fields        : ['id', 'nome'],
        root          : 'linhas',
        totalProperty : 'total'
    }),
    editable       : true,
    triggerAction  : 'all',
    minChars       : 1,
    loadingText    : 'Loading...',
    width          : 200,
    selectOnFocus  :true,
    stateful       :false,
    listeners      : ....
    }},
}),

谢谢

1 个答案:

答案 0 :(得分:2)

你可以试试下面的东西来添加标签吗?这是documentation

labelStyle: 'width:30px',
fieldLabel: 'Super Long Label That Cuts Off'