2

いくつかの単純なダミー データを含む基本的な ag-grid がありますが、ライブラリで提供されている .css ファイルをインポートしない場合にのみ表示され、それでも正しく表示されません。

私のpackage.jsonからの抜粋:

"ag-grid": "10.0.1",
"ag-grid-react": "10.0.0",
"react": "15.4.2"

私のReactコンポーネントから:コンストラクター:

this.state = { columnDefs: [{headerName: 'Product', field: 'product'},{headerName: 'Country', field: 'country'}], rowData: [{product: 'IOL', country: 'US'}, {product: 'Suture', country: 'IN'}]}

render() から:

return (
        <div id='grid'>
            {/*<div id='grid' className='ag-fresh'>*/}
            <div>
                Here's the grid...
            </div>
            <AgGridReact

                // listen for events with React callbacks
                onGridReady={this.onGridReady.bind(this)}
                // onRowSelected={this.onRowSelected.bind(this)}
                // onCellClicked={this.onCellClicked.bind(this)}

                // binding to properties within React State or Props
                showToolPanel={this.state.showToolPanel}
                quickFilterText={this.state.quickFilterText}
                icons={this.state.icons}

                // column definitions and row data are immutable, the grid
                // will update when these lists change
                columnDefs={this.state.columnDefs}
                rowData={this.state.rowData}

                // or provide props the old way with no binding
                rowSelection="multiple"
                enableSorting="true"
                enableFilter="true"
                rowHeight="22"
            />
        </div>)

.css をインポートせずにこのコードを実行すると、次のようなごちゃごちゃしたグリッドが表示されます。 ここに画像の説明を入力

ここで、入門ガイドに従って css をインポートすると、次のようになります。

import 'ag-grid-root/dist/styles/ag-grid.css'  // see webpack config for alias of 'ag-grid-root'
import 'ag-grid-root/dist/styles/theme-fresh.css'

...その後、グリッドの一部は表示されません (グリッドの前の私の div のみ)。css をインポートすると、グリッドにテーマを割り当てたかどうかに関係なく、何も表示されません。

4

1 に答える 1