Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions controls/datagrid/columns/column-types/boolean-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ The `DataGridBooleanColumn` is used to represent boolean values. It uses the Che
* `CellContentStyle`(`DataGridTextCellStyle`)—Defines the appearance of each cell associated with this column.
* `CellContentStyleSelector`—Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
* `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.
* `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.
* `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.
* `CellContentTemplateSelector` (`DataTemplateSelector`)—Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
* * `CellEditTemplate`(`DataTemplate`)—Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
* `CellEditTemplate`(`DataTemplate`)—Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
* `FooterText`—Defines the content that will be displayed in the Footer UI that represents the column.
* `FooterStyle`(`DataGridColumnFooterStyle`)—Defines the `Style` object that sets the appearance of each footer cell associated with this column.
* `FooterContentTemplate`(`DataTemplate`)—Defines the appearance of the footer.
Expand All @@ -45,7 +45,7 @@ The `DataGridBooleanColumn` is used to represent boolean values. It uses the Che

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

**Example with CellContenTemplate and CellEditTemplate**
**Example with CellContentTemplate and CellEditTemplate**

```XAML
<telerik:DataGridBooleanColumn PropertyName="IsChampion"
Expand Down
4 changes: 2 additions & 2 deletions controls/datagrid/columns/column-types/date-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The `DataGridDateColumn` is used to represent `DateTime` objects. It uses the Te
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
* `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.
* `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.
* `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.
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.
Expand Down Expand Up @@ -46,7 +46,7 @@ The `DataGridDateColumn` is used to represent `DateTime` objects. It uses the Te

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

**Example with CellContenTemplate and CellEditTemplate**
**Example with CellContentTemplate and CellEditTemplate**

```XAML
<telerik:DataGridDateColumn PropertyName="Established"
Expand Down
8 changes: 4 additions & 4 deletions controls/datagrid/columns/column-types/numerical-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The `DataGridNumericalColumn` is used to represent only numerical values. It use
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
* `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.
* `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.
* `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.
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.
Expand Down Expand Up @@ -48,15 +48,15 @@ The `DataGridNumericalColumn` is used to represent only numerical values. It use

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

**Example with CellContenTemplate and CellEditTemplate**
**Example with CellContentTemplate and CellEditTemplate**

```XAML
<telerik:DataGridNumericalColumn PropertyName="StadiumCapacity">
<telerik:DataGridColumn.CellContenTemplate>
<telerik:DataGridColumn.CellContentTemplate>
<DataTemplate>
<Label Text="{Binding StadiumCapacity}"/>
</DataTemplate>
</telerik:DataGridColumn.CellContenTemplate>
</telerik:DataGridColumn.CellContentTemplate>
<telerik:DataGridColumn.CellEditTemplate>
<DataTemplate>
<telerik:RadDockLayout>
Expand Down
2 changes: 1 addition & 1 deletion controls/datagrid/columns/column-types/picker-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Here are the specific properties defined for `DataGridPickerColumn`:
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
* `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.
* `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.
* `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.
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
* `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.
Expand Down
2 changes: 1 addition & 1 deletion controls/datagrid/columns/column-types/text-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Here are the specific properties for the Text Columns:
* `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.
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
* `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.
* `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.
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.
Expand Down
4 changes: 2 additions & 2 deletions controls/datagrid/columns/column-types/time-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The `DataGridTimeColumn` is used to represent `TimeSpan` objects. It uses the Te
* `CellContentStyle`(`DataGridTextCellStyle`)&mdash;Defines the appearance of each cell associated with this column.
* `CellContentStyleSelector`&mdash;Defines the `StyleSelector` instance that allows for the dynamic appearance on a per-cell basis.
* `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.
* `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.
* `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.
* `CellContentTemplateSelector` (`DataTemplateSelector`)&mdash;Defines a `DataTemplateSelector` instance that may be used to retrieve dynamic data templates on a per-cell basis.
* `CellEditTemplate` (`DataTemplate`)&mdash;Defines the editor associated with the concrete column. The `CellEditTemplate` is displayed when the cell is in edit mode.
* `FooterText`&mdash;Defines the content that will be displayed in the Footer UI that represents the column.
Expand Down Expand Up @@ -47,7 +47,7 @@ The `DataGridTimeColumn` is used to represent `TimeSpan` objects. It uses the Te

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

**Example with CellContenTemplate and CellEditTemplate**
**Example with CellContentTemplate and CellEditTemplate**

```XAML
<telerik:DataGridTimeColumn PropertyName="Time"
Expand Down
Loading