|
|
|
@ -708,10 +708,11 @@ export default class Table<T> extends React.Component<TableProps<T>, TableState<
|
|
|
|
|
className: selectionColumnClass,
|
|
|
|
|
fixed: rowSelection.fixed,
|
|
|
|
|
width: rowSelection.columnWidth,
|
|
|
|
|
title: rowSelection.columnTitle,
|
|
|
|
|
};
|
|
|
|
|
if (rowSelection.type !== 'radio') {
|
|
|
|
|
const checkboxAllDisabled = data.every((item, index) => this.getCheckboxPropsByItem(item, index).disabled);
|
|
|
|
|
selectionColumn.title = (
|
|
|
|
|
selectionColumn.title = selectionColumn.title || (
|
|
|
|
|
<SelectionCheckboxAll
|
|
|
|
|
store={this.store}
|
|
|
|
|
locale={locale}
|
|
|
|
|