From f06670f318cf46cf6edc502fca5df7d6bb155e2f Mon Sep 17 00:00:00 2001 From: pionnegru Date: Tue, 19 Nov 2019 13:27:57 +0200 Subject: [PATCH] update docs --- docs/core/components/data-column.component.md | 1 + docs/core/interfaces/datatable-adapter.interface.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/core/components/data-column.component.md b/docs/core/components/data-column.component.md index b699218277..cc5b10977f 100644 --- a/docs/core/components/data-column.component.md +++ b/docs/core/components/data-column.component.md @@ -53,6 +53,7 @@ Defines column properties for DataTable, Tasklist, Document List and other compo | srTitle | `string` | | Title to be used for screen readers. | | title | `string` | "" | Display title of the column, typically used for column headers. You can use the i18n resource key to get it translated automatically. | | type | `string` | "text" | Value type for the column. Possible settings are 'text', 'image', 'date', 'fileSize', 'location', and 'json'. | +| focus | `boolean` | "true" | Toggles keyboard focus for a column. This should be use for custom template columns that contain actions elements | ## Details diff --git a/docs/core/interfaces/datatable-adapter.interface.md b/docs/core/interfaces/datatable-adapter.interface.md index 661d9cb78a..1e9138627c 100644 --- a/docs/core/interfaces/datatable-adapter.interface.md +++ b/docs/core/interfaces/datatable-adapter.interface.md @@ -70,6 +70,7 @@ interface DataColumn { cssClass?: string; template?: TemplateRef; formatTooltip?: Function; + focus?: boolean; } ```