为什么我的带有 Table 组件的 React 应用程序没有显示所有记录?
Why my React application with Table component doesn't display all of the records?
为什么我的带有来自 Blueprintjs 的 Table 组件的 React 应用程序没有显示所有记录?它只显示 <= 201 条记录
import React, { Component } from 'react';
import {Table, Column, Cell} from '@blueprintjs/table';
import "@blueprintjs/table/lib/css/table.css"
export default class App extends Component{
public render() {
return (
<Table numRows={500} enableGhostCells = {true}>
<Column key={1} name = {"0"} cellRenderer={this.ColumnHeaderCellRenderer}/>
</Table>
)
}
ColumnHeaderCellRenderer = (rowIndex, columnIndex) => {
return <Cell>{(rowIndex*columnIndex).toString()}</Cell>
}
}
问题是由不正确的css引起的。
https://github.com/palantir/blueprint/issues/1807
为什么我的带有来自 Blueprintjs 的 Table 组件的 React 应用程序没有显示所有记录?它只显示 <= 201 条记录
import React, { Component } from 'react';
import {Table, Column, Cell} from '@blueprintjs/table';
import "@blueprintjs/table/lib/css/table.css"
export default class App extends Component{
public render() {
return (
<Table numRows={500} enableGhostCells = {true}>
<Column key={1} name = {"0"} cellRenderer={this.ColumnHeaderCellRenderer}/>
</Table>
)
}
ColumnHeaderCellRenderer = (rowIndex, columnIndex) => {
return <Cell>{(rowIndex*columnIndex).toString()}</Cell>
}
}
问题是由不正确的css引起的。 https://github.com/palantir/blueprint/issues/1807