Hi
Ontap enable edit not working in 2nd check box inside the cell. Is there a way to enable on tap in 2nd checkbox?
Here's my sfdatagrid settings
<syncfusion:SfDataGrid x:Name="datasheetsGrid"
Style="{StaticResource datasheetGridStyle}"
ItemsSource="{Binding Model.DataSheets, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
SelectedItem="{Binding Model.SelectedDataSheets, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" SelectionMode="Single" NavigationMode="Cell"
ScrollViewer.VerticalScrollBarVisibility="Auto" EditTrigger="OnTap">
<syncfusion:SfDataGrid.Columns>
<syncfusion:GridTemplateColumn AllowSorting="False" Padding="5" >
<syncfusion:GridTemplateColumn.HeaderTemplate>
<DataTemplate>
<TextBlock Text="Test Status" Style="{StaticResource GridHeaderStyle}"/>
</DataTemplate>
</syncfusion:GridTemplateColumn.HeaderTemplate>
<syncfusion:GridTemplateColumn.CellTemplate>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<CheckBox IsChecked="{Binding IsConducted, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Margin="4,4" syncfusion:FocusManagerHelper.FocusedElement="True">
<TextBlock Text="Conducted" FontWeight="Bold" Margin="0,-2,0,0"/>
</CheckBox>
<CheckBox Grid.Row="1" IsChecked="{Binding IsWaived, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Margin="4" syncfusion:FocusManagerHelper.FocusedElement="True">
<TextBlock Text="Waived" Margin="0,-3,0,0"/>
</CheckBox>
</Grid>
</DataTemplate>
</syncfusion:GridTemplateColumn.CellTemplate>
</syncfusion:GridTemplateColumn>
Thanks