Skip to content

Commit

Permalink
Modifying the CSS selector to exclude columns associated with multise…
Browse files Browse the repository at this point in the history
…lect functionality restores the resizing capability (#9660)

Co-authored-by: “chndn004” <“chandanchatterjee04@gmail.com”>
  • Loading branch information
chndn004 and “chndn004” authored May 9, 2024
1 parent 0414fa7 commit 9f94a23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down

0 comments on commit 9f94a23

Please sign in to comment.