This question is locked. New answers and comments are not allowed.
Hi guys,
I've got a weird problem:
When EnableRowVirtualization = true
I have a grid with lots of rows like > 100 and I click on the first 10 rows or so the click event of the templated checkbox is handled perfectly. When I scroll down and click again on the checkbox, the click event is not fired.
When EnableRowVirtualization = false
Everything just works.
I hope you can help! (using build: 2013.2.611.1050)
Greetings Edward
<telerik:GridViewDataColumn UniqueName="checkColumn" IsReadOnly="True"> <telerik:GridViewDataColumn.Header> <CheckBox x:Name="chkSelectAll" Margin="0" Padding="0" VerticalAlignment="Center" IsChecked="True" HorizontalAlignment="Center" Click="ToggleCheckBoxItemsClick"/> </telerik:GridViewDataColumn.Header> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <CheckBox Content="" IsChecked="{Binding Mode=TwoWay, Path=Checked}" Click="ChkDetailItemClick" VerticalAlignment="Center" HorizontalAlignment="Center" /> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn>