You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MAUI/DataGrid/Column-types.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1428,7 +1428,7 @@ The `DataGridNumericColumn` allows formatting the numeric data with culture-spec
1428
1428
1429
1429
The `DataGridMultiColumnComboBoxColumn` displays enumeration as cell contents and hosts a (SfMultiColumnComboBox)[] in editing mode. This column type allows you to define the predefined columns in its drop-down, similar to SfDataGrid.
1430
1430
1431
-
You can change the value by selecting the item from drop down or by editing the entry in SfMultiColumnComboBox. To disable text editing, set the (IsTextReadOnly)[] property to `true`.
1431
+
You can change the value by selecting the item from drop down or by editing the entry in `SfMultiColumnComboBox`. To disable text editing, set the (IsTextReadOnly)[] property to `true`.
1432
1432
1433
1433
{% tabs %}
1434
1434
{% highlight xaml %}
@@ -1481,17 +1481,17 @@ SfDataGrid triggers, (CurrentCellDropDownSelectionChanged)[] event, when the Sel
1481
1481
`SelectedIndex` property returns the index of selected item.
1482
1482
`SelectedItem` property returns the selected item from drop down list.
You can enable the SfMultiColumnComboBox to automatically complete the entered input value by setting the (AllowAutoComplete)[] property to `true`. When enabled, this property compares the entered text with each item in the underlying data source of DataGridMultiColumnComboBoxColumn and autocomplete the input with the matched value based on the DisplayMember.
1488
+
You can enable the `SfMultiColumnComboBox` to automatically complete the entered input value by setting the (AllowAutoComplete)[] property to `true`. When enabled, this property compares the entered text with each item in the underlying data source of `DataGridMultiColumnComboBoxColumn` and autocomplete the input with the matched value based on the DisplayMember.
1489
1489
1490
1490
### Filtering
1491
1491
1492
-
You can enable the SfMultiColumnComboBox to dynamically filter the drop-down list items based on the text typed in the entry by setting (AllowIncrementalFiltering)[] property to `true`. Additionally, DataGridMultiColumnComboBoxColumn allows filtering based on case sensitivity by setting (AllowCaseSensitiveFiltering)[] to `true`. These features help users to quickly select items from large list.
1492
+
You can enable the `SfMultiColumnComboBox` to dynamically filter the drop-down list items based on the text typed in the entry by setting (AllowIncrementalFiltering)[] property to `true`. Additionally, `DataGridMultiColumnComboBoxColumn` allows filtering based on case sensitivity by setting (AllowCaseSensitiveFiltering)[] to `true`. These features help users to quickly select items from large list.
1493
1493
1494
-
<imgalt="DataGridMultiColumnComboBox column with Filtering .NET MAUI DataGrid"src="Images\column-types\maui-datagrid-MultiColumn-ComboBox-column-filtering.png"width="404"/>
1494
+
<imgalt="DataGridMultiColumnComboBox column with Filtering .NET MAUI DataGrid"src="Images\column-types\maui-datagrid-multicolumn-combobox-column-filtering.png"width="404"/>
1495
1495
1496
1496
### Null value support
1497
1497
@@ -1504,7 +1504,7 @@ The AllowNullValue will work only when the underlying property type is Nullable.
1504
1504
1505
1505
You can change the size of drop-down popup by setting (PopupWidth)[] and (PopupHeight)[] properties. If these values are not set, the popup width defaults to the `PopupMinWidth` property, which is 200.0 by default. Similarly, the popup height defaults to the `PopupMinHeight` property, which is 300.0 by default.
1506
1506
1507
-
Additionally, SfMultiColumnComboBox can automatically adjust the popup width based on the actual size of the SfDataGrid by setting the (IsAutoPopupSize)[] property to `true`.
1507
+
Additionally, `SfMultiColumnComboBox` can automatically adjust the popup width based on the actual size of the SfDataGrid by setting the (IsAutoPopupSize)[] property to `true`.
1508
1508
1509
1509
### Loading different ItemsSource for each row
1510
1510
@@ -1578,9 +1578,9 @@ internal class ItemsSourceSelector : IItemsSourceSelector
1578
1578
1579
1579
{% endtabs %}
1580
1580
1581
-
<imgalt="DataGridMultiColumnComboBox column with ItemsSourceSelector .NET MAUI DataGrid"src="Images\column-types\maui-datagrid-MultiColumn-ComboBox-column-itemsourceselector.png"width="404"/>
1581
+
<imgalt="DataGridMultiColumnComboBox column with ItemsSourceSelector .NET MAUI DataGrid"src="Images\column-types\maui-datagrid-multicolumn-combobox-column-itemsourceselector.png"width="404"/>
1582
1582
1583
-
<imgalt="DataGridMultiColumnComboBox column with ItemsSourceSelector .NET MAUI DataGrid"src="Images\column-types\maui-datagrid-MultiColumn-ComboBox-column-itemsourceselector2.png"width="404"/>
1583
+
<imgalt="DataGridMultiColumnComboBox column with ItemsSourceSelector .NET MAUI DataGrid"src="Images\column-types\maui-datagrid-multicolumn-combobox-column-itemsourceselector2.png"width="404"/>
1584
1584
1585
1585
You can download the sample from the following link: (Sample)[https://github.com/SyncfusionExamples/How-to-load-different-items-for-each-row-in-MultiColumn-ComboBox-Column-in-.NET-MAUI-SfDataGrid].
0 commit comments