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!

2
Votes
Hello, in my application, I'm looking to change the behavior of the Enter key. Currently, when pressed inside a data grid, it moves to the next row if possible. However, I'd like it to navigate to the next page instead. In WPF, I know this can be achieved using the GridSelectionController, as mentioned in this resource: https://support.syncfusion.com/kb/article/3830/how-to-change-the-enter-key-behavior-in-sfdatagrid . However, since the GridSelectionController is not available in MAUI, a workaround is needed. One approach is to use a global keyboard listener and intercept the Enter key press event, then navigate to the next page. However, this workaround currently navigates to the next element inside the datagrid and then proceeds to the next page, which is not the desired behavior.