下载 Font Awesome
1.拷贝css 和 fonts 到build同级目录
2.需要在index.html中引入css文件
3.在main.js文件中添加
1 initComponent : function() { 2 Ext.setGlyphFontFamily(‘FontAwesome‘); // 设置图标字体文件,只有设置了以后才能用glyph属性 3 this.callParent(); 4 },
4.在组件中使用
text: ‘主页‘,
glyph: 0xf015 //这个需要根据自己的组件查
注意: 如果没有成功,很可能是没有引入 bootstrap.js
原文:http://www.cnblogs.com/shaoshao/p/4109490.html