mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Modifying the CSS selector to exclude columns associated with multiselect functionality restores the resizing capability (#9660)
Co-authored-by: “chndn004” <“chandanchatterjee04@gmail.com”>
This commit is contained in:
committed by
GitHub
parent
0414fa77e0
commit
9f94a23f72
@@ -935,7 +935,7 @@ export class DataTableComponent implements OnInit, AfterContentInit, OnChanges,
|
||||
const headerContainer: HTMLElement = document.querySelector('.adf-datatable-header');
|
||||
|
||||
if (headerContainer) {
|
||||
const headerContainerColumns = headerContainer.querySelectorAll('.adf-datatable-cell-header');
|
||||
const headerContainerColumns = headerContainer.querySelectorAll('.adf-datatable-cell-header:not(.adf-datatable-checkbox)');
|
||||
|
||||
headerContainerColumns.forEach((column: HTMLElement, index: number): void => {
|
||||
if (allColumns[index]) {
|
||||
|
Reference in New Issue
Block a user