1

我有一个组合框,我只是想让它加粗。数据在存储中。我可以加粗列表中的项目,但在文本框中选择项目后我不能加粗项目。

我努力了:

fontWeight: 'bold', cls: 'make-bold', itemCls:'make-bold',

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

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>')
}, {
4

1 回答 1

1

这做到了

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

为什么我两者都需要?

于 2013-04-19T16:55:58.853 回答