Skip to content

Add treeExpandButtonColumnKey option to specify the column where tree button should be shown

Compare
Choose a tag to compare
@komarovalexander komarovalexander released this 03 Jan 10:09
· 448 commits to master since this release
748bd7e

#262
example:

const tablePropsInit: ITableProps = {
  columns: [
    { key: 'name', title: 'Name', dataType: DataType.String },
    { key: 'productivity', title: 'Productivity', dataType: DataType.Number },
  ],
  //...
  treeExpandButtonColumnKey: 'productivity',
  //...
};