From daea5fd29c7862b8658fc5fef2d032f3d79eb5f9 Mon Sep 17 00:00:00 2001 From: BingoRUS Date: Tue, 8 May 2018 13:24:50 +0300 Subject: [PATCH] Release 18.1.2-pre-beta Cherry-picked changesets: 45b12d4 Alyar - dxDataGrid - remove doc comments for the 'command' option of the columns (#3721) --- js/docEnums.js | 10 ---------- js/ui/grid_core/ui.grid_core.columns_controller.js | 10 ---------- ts/dx.all.d.ts | 2 -- 3 files changed, 22 deletions(-) diff --git a/js/docEnums.js b/js/docEnums.js index 8a30709cf661..9de11da3460b 100644 --- a/js/docEnums.js +++ b/js/docEnums.js @@ -785,16 +785,6 @@ * @enum {'avg'|'custom'} */ - /** - * @typedef {string} Enums.GridCommandColumnType - * @enum {'adaptive'|'edit'|'expand'|'select'} - */ - - /** - * @typedef {string} Enums.TreeListCommandColumnType - * @enum {'adaptive'|'edit'} - */ - /** * @typedef {string} Enums.DataSourceStoreType * @enum {'array'|'local'|'odata'} diff --git a/js/ui/grid_core/ui.grid_core.columns_controller.js b/js/ui/grid_core/ui.grid_core.columns_controller.js index 13c5a7683a3e..8d2e281772db 100644 --- a/js/ui/grid_core/ui.grid_core.columns_controller.js +++ b/js/ui/grid_core/ui.grid_core.columns_controller.js @@ -603,16 +603,6 @@ module.exports = { * @publicName formItem * @type dxFormSimpleItem */ - /** - * @name dxDataGridColumn_command - * @publicName command - * @type string|Enums.GridCommandColumnType - */ - /** - * @name dxTreeListColumn_command - * @publicName command - * @type string|Enums.TreeListCommandColumnType - */ regenerateColumnsByVisibleItems: false, /** * @name dxDataGridOptions_customizeColumns diff --git a/ts/dx.all.d.ts b/ts/dx.all.d.ts index 0aabef32a551..3030368599a1 100644 --- a/ts/dx.all.d.ts +++ b/ts/dx.all.d.ts @@ -4497,7 +4497,6 @@ declare module DevExpress.ui { calculateGroupValue?: string | ((rowData: any) => any); /** An array of grid columns. */ columns?: Array; - command?: string | 'adaptive' | 'edit' | 'expand' | 'select'; /** Specifies a custom template for group cells. */ groupCellTemplate?: template | ((cellElement: DevExpress.core.dxElement, cellInfo: any) => any); /** Specifies the index of a column when grid records are grouped by the values of this column. */ @@ -4912,7 +4911,6 @@ declare module DevExpress.ui { export interface dxTreeListColumn extends GridBaseColumn { /** Configures columns. */ columns?: Array; - command?: string | 'adaptive' | 'edit'; } /** This section describes the properties of a grid row. An object containing these properties comes to certain event-handling functions. */ export interface dxDataGridRowObject {