+
+
+
### unsafeInline `Boolean` *(default: true)*
When set to false, the decoration applied by the Formatting tool dropdown will be skipped and the values will appear as plain text options.
diff --git a/docs/api/javascript/ui/grid.md b/docs/api/javascript/ui/grid.md
index e31b9e2aee1..188acba196f 100644
--- a/docs/api/javascript/ui/grid.md
+++ b/docs/api/javascript/ui/grid.md
@@ -11244,9 +11244,9 @@ Hides the specified grid column.
#### Parameters
-##### column `Number|String|Object`
+##### column `Number|String|Object|Array`
-The index of the column, or the [field](/api/javascript/ui/grid/configuration/columns.field) to which the columns is bound, or the column object obtained from the [columns](/api/javascript/ui/grid/fields/columns) collection.
+The index of the column, or the [field](/api/javascript/ui/grid/configuration/columns.field) to which the columns is bound, or the column object obtained from the [columns](/api/javascript/ui/grid/fields/columns) collection, or array of indexes, or array of fields, or array of column objects obtained from the collection of columns, or array of mixed values.
When using multicolumn headers, using an index will hide a top-level column together with all its "child columns". In such scenarios, using field names or column objects may be more appropriate.
@@ -11257,7 +11257,7 @@ When using multicolumn headers, using an index will hide a top-level column toge
$("#grid").kendoGrid({
columns: [
{ field: "name" },
- { field: "age" }
+ { field: "age" },
],
dataSource: [
{ name: "Jane Doe", age: 30 },
@@ -11309,6 +11309,25 @@ When using multicolumn headers, using an index will hide a top-level column toge
grid.hideColumn(grid.columns[0].columns[1]);
+#### Example - hide a column by array of mixed values
+
+