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:
Chandan Chatterjee
2024-05-10 00:55:36 +05:30
committed by GitHub
parent 0414fa77e0
commit 9f94a23f72

View File

@@ -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]) {