Skip to content

Commit

Permalink
Fixed #4957
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici authored and Çağatay Çivici committed Mar 27, 2018
1 parent 1988b87 commit 189efeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2367,7 +2367,7 @@ export class ReorderableColumn implements AfterViewInit, OnDestroy {
}

onMouseDown(event) {
if (event.target.nodeName === 'INPUT')
if (event.target.nodeName === 'INPUT' || this.domHandler.hasClass(event.target, 'ui-column-resizer'))
this.el.nativeElement.draggable = false;
else
this.el.nativeElement.draggable = true;
Expand Down

0 comments on commit 189efeb

Please sign in to comment.