Add treeExpandButtonColumnKey option to specify the column where tree button should be shown
komarovalexander
released this
03 Jan 10:09
·
448 commits
to master
since this release
#262
example:
const tablePropsInit: ITableProps = {
columns: [
{ key: 'name', title: 'Name', dataType: DataType.String },
{ key: 'productivity', title: 'Productivity', dataType: DataType.Number },
],
//...
treeExpandButtonColumnKey: 'productivity',
//...
};