Welcome to the .NET MAUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the .NET MAUI, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hi Syncfusion team,
In the latest Vol. 2 version of SfDataGrid:
(1) Edit Mode doesn't work. if I set the AllowEditing="True" and
EditTapAction="OnDoubleTap", the cell in corresponding columns doesn't respond to double tap.(2) In Xamarin.SfDataGrid, GetSelectedCellInfo method is provided to get the MappingName of current edited cell (as shown below in the code snippet). This is useful since a developer may need to update only the edited property instead of the whole data entry on server.
private async void CurrentCellEndEdit(object sender, GridCurrentCellEndEditEventArgs e)
{
SelectedCellInfo ci = dataGrid.GetSelectedCellInfo(e.RowColumnIndex);
string propertyName = ci.Column.MappingName;
object rowData = ci.RowData;
// Then, only the edited property (with the mappingName) should be updated on server
}