I have Xamarin forms solution with UWP and iOS projects. The SfDataGid I create edits properly on Windows, but when I run it on an iPad I can't edit the cells. Here is the XAML:
<xForms:SfDataGrid x:Name="FormationDataGrid"
Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"
AllowEditing="True" EditTapAction="OnTap" EditorSelectionBehavior="SelectAll"
ShowRowHeader="True" ColumnSizer="Star" RowHeaderWidth="25"
AutoGenerateColumns="True"
AutoGeneratingColumn="DataGrid_AutoGeneratingColumn"
ItemsSource="{Binding OneDFormationViewModel.LayerCollection, Mode=TwoWay}">
<xForms:SfDataGrid.RowHeaderTemplate>
<DataTemplate>
<Label Text="{Binding Index}" HorizontalTextAlignment = "Center" VerticalTextAlignment = "Center" />
</DataTemplate>
</xForms:SfDataGrid.RowHeaderTemplate>
</xForms:SfDataGrid>
I have tried tapping, double tapping, and pressing on iOS and the cells won't go into edit mode. I have no trouble editing Entry controls I have in the app. What I am doing wrong?
I am using v15.4.0.20.