From 1784106e6bf4cbd3ae5e18b658a62ee52e10e37d Mon Sep 17 00:00:00 2001 From: pionnegru Date: Tue, 19 Nov 2019 13:26:43 +0200 Subject: [PATCH] add focus parameter --- lib/core/data-column/data-column.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/core/data-column/data-column.component.ts b/lib/core/data-column/data-column.component.ts index 65248acfa8..271d8b13da 100644 --- a/lib/core/data-column/data-column.component.ts +++ b/lib/core/data-column/data-column.component.ts @@ -74,6 +74,10 @@ export class DataColumnComponent implements OnInit { @Input() editable: boolean = false; + /** Enable or disable cell focus */ + @Input() + focus: boolean = true; + ngOnInit() { if (!this.srTitle && this.key === '$thumbnail') { this.srTitle = 'Thumbnail';