diff --git a/src/app/components/datatable/datatable.ts b/src/app/components/datatable/datatable.ts index 6073cc5f963..5bf3eba7bad 100644 --- a/src/app/components/datatable/datatable.ts +++ b/src/app/components/datatable/datatable.ts @@ -2197,8 +2197,9 @@ export class DataTable implements AfterViewChecked,AfterViewInit,AfterContentIni if(this.columnResizeMode === 'fit') { let nextColumn = this.resizeColumn.nextElementSibling; let nextColumnWidth = nextColumn.offsetWidth - delta; - - if(newColumnWidth > 15 && nextColumnWidth > 15) { + let nextColumnMinWidth = nextColumn.style.minWidth||15; + + if(newColumnWidth > 15 && nextColumnWidth > parseInt(nextColumnMinWidth)) { this.resizeColumn.style.width = newColumnWidth + 'px'; if(nextColumn) { nextColumn.style.width = nextColumnWidth + 'px';