I am working on an application that leverages the SfDataGrid. I have all the functionality working, but when the number of records in the grid are long enough to cover the whole screen, when I go to edit one of the records it's covered up when the Soft Keyboard shows up. I know about the Scrolling functionality and although I'm using an MVVM approach, this is in my codebehind file:
private void OnCurrentCellBeginEdit(object sender, DataGridCurrentCellBeginEditEventArgs e)
{
ShowDataGrid.ScrollToRowIndex(e.RowColumnIndex.RowIndex, ScrollToPosition.MakeVisible);
}
Unfortunately, this doesn't work because the app still thinks it is visible even when the keyboard shows up. I tried .Start as well but still nothing. Thanks in advance for any assistance!