This commit is contained in:
jonyshi 2018-07-17 10:22:51 +08:00
parent b92920ab6e
commit bb816f76cb
2 changed files with 5 additions and 2 deletions

View File

@ -80,4 +80,5 @@ import 'bee-table/build/Table.css';
- 如果使用了固定列请给固定的列设定固定宽度既width属性。
- 在使用expandedRowRender属性扩展表格时如果同时使用了固定列。
需要给expandedRowRender中返回的对象添加`style=\{{height: xxx}\}`,来使扩展后的固定列扩展成一样高度。
需要给expandedRowRender中返回的对象添加`style=\{{height: xxx}\}`,来使扩展后的固定列扩展成一样高度。

View File

@ -44,6 +44,7 @@ const MultiSelectTable = multiSelect(Table, Checkbox);
| 参数 | 说明 | 类型 | 默认值 |
| ------ | ---------- | -------- | ---- |
| sorter | 排序函数,可以自定义 | Function | 无 |
| sorterClick | 排序钩子函数| Function | 无 |
#### 使用
@ -116,4 +117,5 @@ import { Table, Checkbox, Popover, Icon } from 'tinper-bee';
const DragColumnTable = filterColumn(Table, Checkbox, Popover, Icon);
```
```