Skip to content

Commit 48e7da7

Browse files
committed
fix typo in DataGrid column types
1 parent 09ec081 commit 48e7da7

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

controls/datagrid/columns/column-types/boolean-column.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ The `DataGridBooleanColumn` is used to represent boolean values. It uses the Che
1818
* `CellContentStyle`(`DataGridTextCellStyle`)—Defines the appearance of each cell associated with this column.
1919
* `CellContentStyleSelector`—Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
2020
* `CellContentFormat`—Defines the custom format for each cell value. The `String.Format` routine is used and the format passed has to be in the form required by this method.
21-
* `CellContentTemplate`(`DataTemplate`)—Defines the appearance of each cell associated with the concrete column. The `CellContenTemplate` enables you to customize the default content of the cell.
21+
* `CellContentTemplate`(`DataTemplate`)—Defines the appearance of each cell associated with the concrete column. The `CellContentTemplate` enables you to customize the default content of the cell.
2222
* `CellContentTemplateSelector` (`DataTemplateSelector`)—Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
23-
* * `CellEditTemplate`(`DataTemplate`)—Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
23+
* `CellEditTemplate`(`DataTemplate`)—Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
2424
* `FooterText`—Defines the content that will be displayed in the Footer UI that represents the column.
2525
* `FooterStyle`(`DataGridColumnFooterStyle`)—Defines the `Style` object that sets the appearance of each footer cell associated with this column.
2626
* `FooterContentTemplate`(`DataTemplate`)—Defines the appearance of the footer.
@@ -45,7 +45,7 @@ The `DataGridBooleanColumn` is used to represent boolean values. It uses the Che
4545

4646
![DataGrid Boolean Column](images/booleancolumn-overview.png)
4747

48-
**Example with CellContenTemplate and CellEditTemplate**
48+
**Example with CellContentTemplate and CellEditTemplate**
4949

5050
```XAML
5151
<telerik:DataGridBooleanColumn PropertyName="IsChampion"

controls/datagrid/columns/column-types/date-column.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `DataGridDateColumn` is used to represent `DateTime` objects. It uses the Te
1818
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
1919
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
2020
* `CellContentFormat`&mdash;Specifies the custom format for each cell value. The `String.Format` routine is used and the format passed has to be in the form required by this method.
21-
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContenTemplate` enables you to customize the default content of the cell.
21+
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContentTemplate` enables you to customize the default content of the cell.
2222
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
2323
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
2424
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.
@@ -46,7 +46,7 @@ The `DataGridDateColumn` is used to represent `DateTime` objects. It uses the Te
4646

4747
![DataGrid Date Column](images/datecolumn-overview.png)
4848

49-
**Example with CellContenTemplate and CellEditTemplate**
49+
**Example with CellContentTemplate and CellEditTemplate**
5050

5151
```XAML
5252
<telerik:DataGridDateColumn PropertyName="Established"

controls/datagrid/columns/column-types/numerical-column.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `DataGridNumericalColumn` is used to represent only numerical values. It use
1818
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
1919
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
2020
* `CellContentFormat`&mdash;Defines the custom format for each cell value. The `String.Format` routine is used and the format passed has to be in the form required by this method.
21-
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContenTemplate` enables you to customize the default look of the cell.
21+
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContentTemplate` enables you to customize the default look of the cell.
2222
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
2323
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
2424
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.
@@ -48,15 +48,15 @@ The `DataGridNumericalColumn` is used to represent only numerical values. It use
4848

4949
![DataGrid Numerical Column](images/numericalcolumn-overview.png)
5050

51-
**Example with CellContenTemplate and CellEditTemplate**
51+
**Example with CellContentTemplate and CellEditTemplate**
5252

5353
```XAML
5454
<telerik:DataGridNumericalColumn PropertyName="StadiumCapacity">
55-
<telerik:DataGridColumn.CellContenTemplate>
55+
<telerik:DataGridColumn.CellContentTemplate>
5656
<DataTemplate>
5757
<Label Text="{Binding StadiumCapacity}"/>
5858
</DataTemplate>
59-
</telerik:DataGridColumn.CellContenTemplate>
59+
</telerik:DataGridColumn.CellContentTemplate>
6060
<telerik:DataGridColumn.CellEditTemplate>
6161
<DataTemplate>
6262
<telerik:RadDockLayout>

controls/datagrid/columns/column-types/picker-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Here are the specific properties defined for `DataGridPickerColumn`:
2323
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
2424
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
2525
* `CellContentFormat`&mdash;Defines the custom format for each cell value. The `String.Format` routine is used and the format passed has to be in the form required by this method.
26-
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContenTemplate` enables you to customize the default look of the cell.
26+
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContentTemplate` enables you to customize the default look of the cell.
2727
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
2828
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
2929
* `FilterControlTemplate`(`DataTemplate`)&mdash;Specifies the user defined template used for the Filtering UI. The template must contain an instance of the `Telerik.Maui.Controls.DataGrid.DataGridFilterControlBase` class.

controls/datagrid/columns/column-types/text-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Here are the specific properties for the Text Columns:
2222
* `CellContentFormat`&mdash;Defines the custom format for each cell value. The `String.Format` routine is used and the format passed has to be in the form required by this method.
2323
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
2424
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
25-
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContenTemplate` enables you to customize the default content of the cell.
25+
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContentTemplate` enables you to customize the default content of the cell.
2626
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
2727
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
2828
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.

controls/datagrid/columns/column-types/time-column.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `DataGridTimeColumn` is used to represent `TimeSpan` objects. It uses the Te
1818
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
1919
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
2020
* `CellContentFormat`&mdash;Defines the custom format for each cell value. The `String.Format` routine is used and the format passed has to be in the form required by this method.
21-
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContenTemplate` enables you to customize the default content of the cell.
21+
* `CellContentTemplate` (`DataTemplate`)&mdash;Defines the appearance of each cell associated with the concrete column. `CellContentTemplate` enables you to customize the default content of the cell.
2222
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
2323
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
2424
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.
@@ -47,7 +47,7 @@ The `DataGridTimeColumn` is used to represent `TimeSpan` objects. It uses the Te
4747

4848
![DataGrid Time Column](images/timecolumn-overview.png)
4949

50-
**Example with CellContenTemplate and CellEditTemplate**
50+
**Example with CellContentTemplate and CellEditTemplate**
5151

5252
```XAML
5353
<telerik:DataGridTimeColumn PropertyName="Time"

0 commit comments

Comments
 (0)