我使用 tpl 为组合框添加了快速提示(工具提示),如下所示,
'<tpl for="."><div ext:qtip="{text}" class="x-combo-list-item">{text}</div></tpl>'
但添加后,组合框不会标记(蓝色)选定的条目。即,在我添加工具提示之前,所选条目可以被视为已标记或已选中(对我来说是蓝色)。但现在它不起作用(选定的实体没有被选中)。这是我的代码,
{
name : name,
hideOnSelect : false,
triggerAction : 'all',
mode : 'local',
width : size,
tpl :'<tpl for="."><div ext:qtip="{text}" class="x-combo-list-item">{text}</div></tpl>',
store : new Ext.data.SimpleStore({
id : 0,
fields : ['value','text'],
data : data
}),
listWidth : 400,
valueField : 'value',
displayField : 'text'
}
<---之前 <---之后
必须感谢任何帮助...谢谢。