This question is locked. New answers and comments are not allowed.
Hi.
I have a view:
<telerikPrimitives:RadDataBoundListBox x:Name="TransactionsListBox" ItemsSource="{Binding Transactions}" DataVirtualizationItemTemplate="{Binding UserInterfaceVM.ReconcileTransactionItemTemplate, Source={StaticResource Locator}}" ScrollViewer.VerticalScrollBarVisibility="Disabled" DataVirtualizationMode="OnDemandAutomatic"> <telerikPrimitives:RadDataBoundListBox.ItemLoadingTemplate> <DataTemplate> <telerikPrimitives:RadBusyIndicator IsRunning="True" AnimationStyle="AnimationStyle9"/> </DataTemplate> </telerikPrimitives:RadDataBoundListBox.ItemLoadingTemplate> <i:Interaction.Triggers> <i:EventTrigger EventName="DataRequested"> <GalaSoft_MvvmLight_Command:EventToCommand Command="{Binding RefreshCommand}"/> </i:EventTrigger> </i:Interaction.Triggers></telerikPrimitives:RadDataBoundListBox>
By RefreshCommand never fires. If I'm adding handler for DataRequested in code-behind, then I'm getting this event. What can be wrong?