diff --git a/src/app/components/table/table.css b/src/app/components/table/table.css index 6d55f24793e..a3820e16ce3 100755 --- a/src/app/components/table/table.css +++ b/src/app/components/table/table.css @@ -155,7 +155,7 @@ [pReorderableColumn] { cursor: move; - } + } /* Loader */ .p-datatable .p-datatable-loading-overlay { diff --git a/src/app/components/table/table.ts b/src/app/components/table/table.ts index cb7b0610d56..b85b2165bc9 100644 --- a/src/app/components/table/table.ts +++ b/src/app/components/table/table.ts @@ -4025,7 +4025,8 @@ export class ResizableColumn implements AfterViewInit, OnDestroy { @Directive({ selector: '[pReorderableColumn]', host: { - class: 'p-element' + class: 'p-element', + '[style.cursor]': 'isEnabled() ? "move" : "default"' } }) export class ReorderableColumn implements AfterViewInit, OnDestroy {