我正在按照以下示例自定义表格的工具栏:http: //allenfang.github.io/react-bootstrap-table/custom.html#insertBtn
我可以看到我的按钮,但看不到我用 btnGlyphicon 设置的图标。
生成的 html 是<i class="fa glyphicon glyphicon-edit"></i>
fa + glyphicon 都需要在课堂上吗?我添加了 font-awesome 作为依赖项,但我仍然看不到图标。
我错过了什么?
任何帮助表示赞赏
import React from 'react';
import {
BootstrapTable, TableHeaderColumn,
ButtonGroup, Button, InsertButton
} from 'react-bootstrap-table';
import './../node_modules/react-bootstrap-table/dist/react-bootstrap-table-all.min.css';
import './../node_modules/bootstrap/dist/css/bootstrap.min.css';
createCustomButtonGroup(props) {
return (
<ButtonGroup className='my-custom-class' sizeClass='btn-group-md'>
{ props.exportCSVBtn }
<InsertButton
btnText='Info'
className='my-custom-class'
btnGlyphicon='glyphicon-edit'
onClick={ () => this.changeInfoFilter() }/>
<InsertButton
btnText='Warning'
className='my-custom-class'
btnGlyphicon='glyphicon-edit'
onClick={ () => this.changeWarningFilter() }/>
<InsertButton
btnText='Error'
className='my-custom-class'
btnGlyphicon='glyphicon-edit'
onClick={ () => this.changeErrorFilter() }/>
<InsertButton
btnText='Command'
className='my-custom-class'
btnGlyphicon='glyphicon-edit'
onClick={ () => this.changeCommandFilter() }/>
</ButtonGroup>
);
}