This question is locked. New answers and comments are not allowed.
I I have the following code, I am using a IncrementalLoadingMode and a IncrementalLoadingCollection and I have an issue that I cannot remove the loading label at the end of the list, I tried changing IncrementalLoadingItemContent, IncrementalLoadingItemContent, ItemLoadingContent and ItemLoadingTemplate without success.I attach a screenshoot and the code
<telerik:RadDataBoundListBox ItemsSource="{Binding Items}" IncrementalLoadingMode="Auto"> <telerik:RadDataBoundListBox.EmptyContent> <ProgressRing IsActive="True" Width="60" Height="60" /> </telerik:RadDataBoundListBox.EmptyContent> <telerik:RadDataBoundListBox.ItemTemplate> <DataTemplate> ... </DataTemplate> </telerik:RadDataBoundListBox.ItemTemplate> <telerik:RadDataBoundListBox.VirtualizationStrategyDefinition> <telerik:DynamicGridVirtualizationStrategyDefinition StackCount="2"/> </telerik:RadDataBoundListBox.VirtualizationStrategyDefinition></telerik:RadDataBoundListBox>