Ext JS中的样式组合框字段

时间:2013-04-19 16:36:01

标签: css extjs combobox styles

我有一个组合框,我只是想大胆。数据存储在商店中。我可以在列表中加粗项目,但是在文本框中选中项目后我无法加粗项目。

我试过了:

fontWeight:'bold', cls:'make-bold', itemCls: '使粗体',

我可以通过模板加粗列表,但不能在文本字段中实际显示项目。

items:[
{
xtype: 'combobox',
name: 'inputType',
id: 'inputType',
padding : '6 5 5 5',
store: 'Codes',
displayField: 'display',
valueField: 'code',
value: 'Inp_CODE',
editable: false,
width: 80,
tpl: Ext.create('Ext.XTemplate', 
'<tpl for=".">','<div class="x-boundlist-item"><b>{display}</b></div>','</tpl>')
}, {

1 个答案:

答案 0 :(得分:1)

这样做了

 fieldCls: 'make-bold', 
 style: {               
     fontWeight: 'bold' 
 }                      

为什么我需要两者?