diff --git a/MAUI/DataGrid/Column-types.md b/MAUI/DataGrid/Column-types.md index df6214f754..ac20b8abcd 100644 --- a/MAUI/DataGrid/Column-types.md +++ b/MAUI/DataGrid/Column-types.md @@ -1426,9 +1426,9 @@ The `DataGridNumericColumn` allows formatting the numeric data with culture-spec ## DataGridMultiColumnComboBoxColumn -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. +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. -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`. +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`. {% tabs %} {% highlight xaml %} @@ -1476,7 +1476,7 @@ this.dataGrid.Columns.Add(column); {% endtabs %} -SfDataGrid triggers, (CurrentCellDropDownSelectionChanged)[] event, when the SelectedValue is changed. (CurrentCellDropDownSelectionChangedEventArgs)[] of `CurrentCellDropDownSelectionChanged` event provides the information about the changed cell value. +SfDataGrid triggers, [CurrentCellDropDownSelectionChanged]() event, when the SelectedValue is changed. [CurrentCellDropDownSelectionChangedEventArgs]() of `CurrentCellDropDownSelectionChanged` event provides the information about the changed cell value. `SelectedIndex` property returns the index of selected item. `SelectedItem` property returns the selected item from drop down list. @@ -1485,26 +1485,26 @@ SfDataGrid triggers, (CurrentCellDropDownSelectionChanged)[] event, when the Sel ### Auto-complete support -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. +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. ### Filtering -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. +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. DataGridMultiColumnComboBox column with Filtering .NET MAUI DataGrid ### Null value support -You can allow null values in the column by setting the (AllowNullValue)[] property to `true`. +You can allow null values in the column by setting the [AllowNullValue]() property to `true`. N> The AllowNullValue will work only when the underlying property type is Nullable. ### Popup Size Customization -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. +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. -Additionally, `SfMultiColumnComboBox` can automatically adjust the popup width based on the actual size of the SfDataGrid by setting the (IsAutoPopupSize)[] property to `true`. +Additionally, `SfMultiColumnComboBox` can automatically adjust the popup width based on the actual size of the SfDataGrid by setting the [IsAutoPopupSize]() property to `true`. ### Loading different ItemsSource for each row @@ -1582,7 +1582,7 @@ internal class ItemsSourceSelector : IItemsSourceSelector DataGridMultiColumnComboBox column with ItemsSourceSelector .NET MAUI DataGrid -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]. +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). ## Row header diff --git a/MAUI/DataGrid/Images/column-types/maui-datagrid-MultiColumn-ComboBox-column-filtering.png b/MAUI/DataGrid/Images/column-types/maui-datagrid-MultiColumn-ComboBox-column-filtering.png index ad4319952a..1f1539cbd4 100644 Binary files a/MAUI/DataGrid/Images/column-types/maui-datagrid-MultiColumn-ComboBox-column-filtering.png and b/MAUI/DataGrid/Images/column-types/maui-datagrid-MultiColumn-ComboBox-column-filtering.png differ diff --git a/MAUI/DataGrid/freeze-panes.md b/MAUI/DataGrid/freeze-panes.md index 07308b3742..bf3e67e76d 100644 --- a/MAUI/DataGrid/freeze-panes.md +++ b/MAUI/DataGrid/freeze-panes.md @@ -117,7 +117,7 @@ The DataGrid allows you to customize the color of the freeze pane line using the ### Freeze pane line thickness -The DataGrid provides an option to customize the thickness of the freeze pane line using the `DataGridStyle.FreezePaneLineStrokeThickness` property. This property defines the stroke width for all frozen rows and columns in both the body and footer regions +The DataGrid provides an option to customize the thickness of the freeze pane line using the [DataGridStyle.FreezePaneLineStrokeThickness](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridStyle.html?tabs=tabid-1#Syncfusion_Maui_DataGrid_DataGridStyle_FreezePaneLineStrokeThickness) property. This property defines the stroke width for all frozen rows and columns in both the body and footer regions N> The default value of `FreezePaneLineStrokeThickness` is 1.