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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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.

    For the moment, such method similar to
 GetSelectedCellInfo doesn't seem to exist. Could you please take this into consideration?


  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

    }

      

(3)  Setting 
AllowEditing to "True" globally in App.xaml raises an exception of object null reference.


Thanks a lot.

Best Regards