diff --git a/doc/en/components/grids/_shared/column-hiding.md b/doc/en/components/grids/_shared/column-hiding.md index 13025b58c..c8b0f70c6 100644 --- a/doc/en/components/grids/_shared/column-hiding.md +++ b/doc/en/components/grids/_shared/column-hiding.md @@ -73,17 +73,17 @@ Let's start by creating our `{ComponentName}` and binding it to our data. We wil ``` ```tsx - - - - - - - - - - - + + + + + + + + + + + ``` @@ -138,18 +138,18 @@ Let's start by creating our `{ComponentName}` and binding it to our data. We wil ``` ```tsx - - - - - - - - - - - - + + + + + + + + + + + + ``` @@ -176,12 +176,12 @@ Let's start by creating our `{ComponentName}` and binding it to our data. We wil ``` ```tsx - - - - - - + + + + + + ``` @@ -204,7 +204,7 @@ Let's start by creating our `{ComponentName}` and binding it to our data. We wil The built-in Column Hiding UI is placed inside an `DropDown` in the `{ComponentName}`'s toolbar. We can show/hide the Column Hiding UI by using this exact dropdown. -For this purpose all we have to do is set both the `GridToolbarActions` and the `GridToolbarHiding` inside of the `{ComponentName}`. We will also add a title to our toolbar by using the `GridToolbarTitle` and a custom style for our {ComponentTitle}'s wrapper. +For this purpose all we have to do is set both the `GridToolbarActions` and the `GridToolbarHiding` inside of the `{ComponentName}`. ```html @@ -239,9 +239,9 @@ For this purpose all we have to do is set both the `GridToolbarActions` and the ```tsx - - - + + + @@ -294,9 +294,9 @@ For this purpose all we have to do is set both the `GridToolbarActions` and the ```tsx - - - + + + @@ -350,7 +350,7 @@ For this purpose all we have to do is set both the `GridToolbarActions` and the ```tsx - + @@ -398,11 +398,11 @@ By using the `Title` property, we will set the title that is displayed inside th ```tsx - - - + + + - + ``` @@ -453,9 +453,9 @@ By using the `Title` property, we will set the title that is displayed inside th ```tsx - - - + + + @@ -509,9 +509,9 @@ By using the `Title` property, we will set the title that is displayed inside th ```tsx - - - + + + @@ -696,8 +696,8 @@ We can easily prevent the user from being able to hide columns through the colum ```tsx - - + + ``` @@ -726,8 +726,8 @@ We can easily prevent the user from being able to hide columns through the colum ```tsx - - + + ``` @@ -764,11 +764,11 @@ We can easily prevent the user from being able to hide columns through the colum ```tsx - - + + - + ``` @@ -965,7 +965,7 @@ In order to achieve that, we will use a class that we will first assign to the g ``` ```tsx -<{ComponentSelector} id="treeGrid"> +<{ComponentSelector} className="tree-grid"> ``` @@ -1021,7 +1021,7 @@ Then set the related CSS variables for the related components. We will apply the ```css -#treeGrid { +.tree-grid { /* Main Column Actions styles */ --ig-column-actions-background-color: #292826; --ig-column-actions-title-color: #ffcd0f; @@ -1055,7 +1055,7 @@ Then set the related CSS variables for the related components. We will apply the ```css -#hierarchicalGrid { +.hierarchical-grid { /* Main Column Actions styles */ --ig-column-actions-background-color: #292826; --ig-column-actions-title-color: #ffcd0f; diff --git a/docfx/en/components/toc.json b/docfx/en/components/toc.json index 131f36928..181c33514 100644 --- a/docfx/en/components/toc.json +++ b/docfx/en/components/toc.json @@ -172,7 +172,8 @@ { "exclude": ["Angular"], "name": "Column Hiding", - "href": "grids/grid/column-hiding.md" + "href": "grids/grid/column-hiding.md", + "status": ["UPDATED_REACT"] }, { "exclude": ["Angular"], @@ -403,7 +404,8 @@ { "exclude": ["Angular"], "name": "Column Hiding", - "href": "grids/hierarchical-grid/column-hiding.md" + "href": "grids/hierarchical-grid/column-hiding.md", + "status": ["UPDATED_REACT"] }, { "exclude": ["Angular"], @@ -639,7 +641,8 @@ { "exclude": ["Angular"], "name": "Column Hiding", - "href": "grids/tree-grid/column-hiding.md" + "href": "grids/tree-grid/column-hiding.md", + "status": ["UPDATED_REACT"] }, { "exclude": ["Angular", "React"],