使用 extjs 单击其中的 X 按钮清除搜索框。它还应该有鼠标悬停状态。任何人都可以请帮助代码或如何继续。任何帮助,将不胜感激。
下面是我要添加功能的代码:-
var tools = [{
xtype: 'label',
id: 'search-filter-label',
text: 'Search'
}, ' ', {
xtype: 'textfield',
id: 'search-filter',
selectOnFocus: true,
width: 100,
listeners: {
'render': {fn:function(){
Ext.getCmp('search-filter').getEl().on('keyup', function(){
this.filter();
}, this, {buffer:50});
}, scope:this}
}
}];