Skip to content

Commit f406469

Browse files
Merge pull request #1270 from telerik/didi/update-picker-images
update pickers images, globalization and datagrid combobox column art…
2 parents 8325af7 + 4440fe1 commit f406469

30 files changed

+30
-39
lines changed

controls/datagrid/columns/cell-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
6565

6666
## See Also
6767

68-
- [ComboBox Column]({%slug datagrid-columns-picker-column %})
68+
- [ComboBox Column]({%slug datagrid-columns-combobox-column %})
6969
- [Template Column]({%slug datagrid-columns-template-column %})
7070
- [Text Column]({%slug datagrid-columns-text-column %})

controls/datagrid/columns/column-types/picker-column.md renamed to controls/datagrid/columns/column-types/combobox-column.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ComboBox Column
33
page_title: .NET MAUI DataGrid Documentation - ComboBox Column
44
description: Check our "ComboBox Column" documentation article for Telerik DataGrid for .NET MAUI.
55
position: 5
6-
slug: datagrid-columns-picker-column
6+
slug: datagrid-columns-combobox-column
77
---
88

99
# .NET MAUI DataGrid ComboBoxColumn
@@ -12,11 +12,11 @@ The `DataGridComboBoxColumn` uses the Telerik UI for .NET MAUI [ComboBox control
1212

1313
## Important Properties
1414

15-
Here are the specific properties defined for `DataGridPickerColumn`:
15+
Here are the specific properties defined for `DataGridComboBoxColumn`:
1616

17-
* `ItemsSource` (`IEnumerable<object>`)&mdash;This property is used when the source of the Picker items is not part of the data and is the same for all items in the grid.
18-
* `ItemsSourcePath` (`string`)&mdash;Specifies a property of your data class that will be used as a source for the Picker control.
19-
* `ItemDisplayBindingPath` (`string`)&mdash;Sets the display path of the items in the Picker selector. It points to a field in the items from the `ItemsSource` collection of the Picker.
17+
* `ItemsSource` (`IEnumerable<object>`)&mdash;This property is used when the source of the ComboBox items is not part of the data and is the same for all items in the grid.
18+
* `ItemsSourcePath` (`string`)&mdash;Specifies a property of your data class that will be used as a source for the ComboBox control.
19+
* `ItemDisplayBindingPath` (`string`)&mdash;Sets the display path of the items in the drop-down. It points to a field in the items from the `ItemsSource` collection of the ComboBox.
2020
* `PropertyName`&mdash;Defines the name of the property of the object type that represents each row within the grid.
2121
* `DataMemberBinding`&mdash;Defines the binding which points to the data member of the underlying object being displayed in the column's cell.
2222
* `HeaderText`&mdash;Defines the content that will be displayed in the Header UI that represents the column.
@@ -53,7 +53,7 @@ Here are the specific properties defined for `DataGridPickerColumn`:
5353
</telerik:DataGridComboBoxColumn>
5454
```
5555

56-
![DataGrid Picker Column](images/pickercolumn-overview.png)
56+
![DataGrid ComboBox Column](images/pickercolumn-overview.png)
5757

5858
**Example with CellContentTemplate and CellEditTemplate**
5959

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: datagrid-columns-text-column
88

99
# .NET MAUI DataGrid TextColumn
1010

11-
A `DataGridTextColumn` converts the content of each associated cell to a `System.String` object.
11+
A `DataGridTextColumn` converts the content of each associated cell to a `System.String` object. The `DataGridTextColumn` uses the Telerik UI for .NET MAUI [Entry]({}%slug entry-overview%}) control in Edit mode.
1212

1313
>note A `DataGridTextColumn` performs better than a `DataGridTemplateColumn`.
1414

controls/datagrid/columns/footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ Define the `FooterContentTemplate` in the `DataGridColumn`:
6565
## See Also
6666

6767
- [Text Column]({%slug datagrid-columns-text-column%})
68-
- [Picker Column]({%slug datagrid-columns-picker-column%})
68+
- [Picker Column]({%slug datagrid-columns-combobox-column%})
6969
- [Template Column]({%slug datagrid-columns-template-column%})

controls/datagrid/columns/frozen-columns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ Style the splitter UI's `Width`, `BackgroundColor`, `BorderColor` and `BorderThi
6868

6969
## See Also
7070

71-
- [Picker Column]({%slug datagrid-columns-picker-column %})
71+
- [Picker Column]({%slug datagrid-columns-combobox-column %})
7272
- [Template Column]({%slug datagrid-columns-template-column %})
7373
- [Text Column]({%slug datagrid-columns-text-column %})

controls/datagrid/columns/header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,5 @@ Customize the column header by using the `HeaderContentTemplate`(of type `DataTe
105105
## See Also
106106

107107
- [Text Column]({%slug datagrid-columns-text-column%})
108-
- [Picker Column]({%slug datagrid-columns-picker-column%})
108+
- [Picker Column]({%slug datagrid-columns-combobox-column%})
109109
- [Template Column]({%slug datagrid-columns-template-column%})

controls/datagrid/columns/nested-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ Here is how the DataGrid looks:
5454

5555
## See Also
5656

57-
- [Picker Column]({%slug datagrid-columns-picker-column %})
57+
- [Picker Column]({%slug datagrid-columns-combobox-column %})
5858
- [Template Column]({%slug datagrid-columns-template-column %})
5959
- [Text Column]({%slug datagrid-columns-text-column %})

controls/datagrid/columns/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Using the built-in auto generation of columns does not fit all scenarios. In suc
4545
* [Boolean Column]({%slug datagrid-columns-boolean-column%})&mdash;An extended `DataGridTextColumn` implementation that presents Boolean data.
4646
* [Date Column]({%slug datagrid-columns-date-column%})&mdash;An extended `DataGridTextColumn` that presents data of type `DateTime`.
4747
* [Time Column]({%slug datagrid-columns-time-column%})&mdash;Represents an extended `DataGridTextColumn` that presents the `TimeOfDay` of a `DateTime` type.
48-
* [ComboBox Column]({%slug datagrid-columns-picker-column%})&mdash;Represents an extended `DataGridTextColumn` which cell value editor is a Telerik.Maui.Controls.RadComboBox control.
48+
* [ComboBox Column]({%slug datagrid-columns-combobox-column%})&mdash;Represents an extended `DataGridTextColumn` which cell value editor is a Telerik.Maui.Controls.RadComboBox control.
4949
* [Template Column]({%slug datagrid-columns-template-column%})&mdash;Represents a column that uses a `DataTemplate` to describe the content of each associated grid cell.
5050
* [ToggleRowDetails Column]({%slug datagrid-columns-toggle-column%})&mdash;Represents a column that allows the user to show and hide the row details for an item.
5151

controls/datagrid/columns/reordering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,6 @@ The result on mobile:
128128
129129
## See Also
130130

131-
- [Picker Column]({%slug datagrid-columns-picker-column %})
131+
- [Picker Column]({%slug datagrid-columns-combobox-column %})
132132
- [Template Column]({%slug datagrid-columns-template-column %})
133133
- [Text Column]({%slug datagrid-columns-text-column %})

controls/datagrid/columns/width.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,6 @@ xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
114114

115115
## See Also
116116

117-
- [Picker Column]({%slug datagrid-columns-picker-column %})
117+
- [Picker Column]({%slug datagrid-columns-combobox-column %})
118118
- [Template Column]({%slug datagrid-columns-template-column %})
119119
- [Text Column]({%slug datagrid-columns-text-column %})

0 commit comments

Comments
 (0)