Ext文本框添加清除图标,

{
xtype : 'textfield',
columnWidth : 0.2,
name : 'goodsName',
fieldLabel : '商品名称',
emptyText : '请输入...',
triggers : {
bar : {
cls : Ext.baseCSSPrefix
+ 'form-clear-trigger',
handler : function() {
this.reset();
}
}
}
},

原文地址:https://www.cnblogs.com/a-long/p/4595651.html