1

次の例に従って、テーブルのツールバーをカスタマイズしています: http://allenfang.github.io/react-bootstrap-table/custom.html#insertBtn

ボタンは表示されますが、btnGlyphicon で設定したアイコンは表示されません。

生成された html は<i class="fa glyphicon glyphicon-edit"></i>Are both fa + glyphicon expected in the class? です。依存関係として 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>
		);
	}

4

1 に答える 1