This question is locked. New answers and comments are not allowed.
I have problem when using Tap event on RadDataBoundListBox in OnDemandManual,
the event Click "btnLoadMorePopular_Click" cannot trigger,
but AllLatest_Tap is trigger when the button is clicked. How to solve this ?
Thanks
<telerikPrimitives:RadDataBoundListBox x:Name="Popular" Tap="AllLatest_Tap" CacheMode="BitmapCache" DataVirtualizationMode="OnDemandManual"> <telerikPrimitives:RadDataBoundListBox.ItemTemplate> <DataTemplate> ..... </DataTemplate> </telerikPrimitives:RadDataBoundListBox.ItemTemplate> <telerikPrimitives:RadDataBoundListBox.DataVirtualizationItemTemplate> <DataTemplate> <Button Margin="-12, 0, -12, 0" Content="load more" x:Name="btnLoadMorePopular" Click="btnLoadMorePopular_Click" /> </DataTemplate> </telerikPrimitives:RadDataBoundListBox.DataVirtualizationItemTemplate> </telerikPrimitives:RadDataBoundListBox>