Unplanned
Last Updated: 11 Jun 2018 13:59 by ADMIN
SelectionChanging event could be added for preventing selection in code, just like SelectionChanging event in RadGridView and PreviewSelectionChanged in RadTreeView
Completed
Last Updated: 06 Dec 2018 09:42 by ADMIN
ArgumentOutOfRangeException is thrown when calling the ScrollIntoView method with an invalid index and the control is grouped.

Scheduled for:
The fix for this issue will be available with LIB (version 2018.3.1210) scheduled for publishing on Monday, 10th December 2018.
Completed
Last Updated: 03 Jul 2019 13:21 by ADMIN
Release LIB 2019.2.708 (7/8/2019)
If you host a RadMaskedTextInput control in the listbox items and focus the input, then pressing Space will send the focus to the corresponding RadListBoxItem instead of adding an empty space character into the text input.

To work this around, create a custom RadListBox control and override its HandleKeyboardInput method.
public class CustomListBox : RadListBox
{
    protected override bool HandleKeyboardInput(Key key)
    {
        if (key == Key.Space)
        {
            return false;
        }
        return base.HandleKeyboardInput(key);
    }
}
Completed
Last Updated: 01 Nov 2019 14:52 by ADMIN
Release LIB 2019.3.1104

If you set the SelectedIndex after an item is added in the Items or ItemsSource of RadListBox, the selection doesn't work. 

To work this around, use the SelectedItem property instead of SelectedIndex.

Completed
Last Updated: 17 Mar 2020 06:22 by ADMIN
Release LIB 2020.1.323 (03/23/2020)
The selected item is scrolled out of view if the ItemsSource is changed during runtime and IsScrollIntoViewEnabled is True.
Completed
Last Updated: 08 Jan 2021 13:48 by ADMIN
Release LIB 2020.3.1311 (1/11/2021)
In this particular case, the RadListBox is placed inside RadBusyIndicator. When we set the DragDropManager.UseAdornerLayer static property to true, drop functionality is restricted. A possible workaround here is to avoid using RadListBox as a content of RadBusyIndicator
Completed
Last Updated: 28 May 2021 09:03 by ADMIN
Release LIB 2021.2.531 (31/05/2021)
 Extremely bad selection performance with large numbers of items (above 10K).
Unplanned
Last Updated: 27 Sep 2021 09:23 by ADMIN
Improve the performance when selecting a large number of items, using Ctrl + A, for example.
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
The LinearDropVisual element is not displayed below the last item in a drag-drop scenario when ScrollViewer.CanContentScroll is set to False.
Unplanned
Last Updated: 15 Jul 2024 10:08 by Stenly
Currently, when a RadListBoxItem container is selected it will be highlighted and scrolled to, which causes the ScrollViewer to "auto-scroll". We could add option to enable/disable this scrolling behavior.
Completed
Last Updated: 25 Jun 2015 15:38 by ADMIN
Completed
Last Updated: 23 Jun 2014 07:14 by ADMIN
Completed
Last Updated: 23 Jan 2017 06:57 by ADMIN
When the ItemsSource of the control is changed to a new collection the old selected items are cached and if a collection containing the old selected items source is set as ItemsSource the cached items are restored.

Make it possible to disabled this functionality per control.

Available in the 2017 R1 Release (2017.1.117).
Completed
Last Updated: 28 Apr 2016 15:26 by ADMIN
The "auto scroll into the view on selection" functionality does not to work as expected if the ItemsPanel is changed and a selection was previously done.
Completed
Last Updated: 13 Jan 2016 15:14 by ADMIN
Available in the 2016 Q1 Release.
Completed
Last Updated: 26 Jan 2016 13:53 by ADMIN
Can be reproduced when RadListBox is placed inside a Grid, a StackPanel with horizontal orientation or a WrapPanel.

Available in LIB version 2016.1.125, it will be also available in the 2016 Q1 SP1.
Declined
Last Updated: 28 Mar 2018 11:57 by ADMIN
The issue can be reproduced in a scenario in which there are a RadListBox and a RadGridView defined and their SelectedItem properties are bound to the same property in the view model. The source collection of RadListBox contains some objects present in the one bound to RadGridView's ItemsSource. If the user selects an item in RadGridView that is also present in the items of RadListBox, the selection is performed in both controls as expected. However, when already having a selected item in both controls, if the user selects an item in RadGridView that is not present in the items of RadListBox, the selection in RadListBox is not cleared. Thus, in order to selected the previously selected item, it needs to be deselected and selected again.

UPDATE:
After the researching the issue, it seems that the logic for handling the case when a SelectedItem that is not present in the source collection is being set is slightly different for Silverlight and WPF. For the WPF version of the control a DependencyProperty.UnsetValue is used, whereas a null value is set for the Silverlight RadListBox. Thus, in Silverlight the selection is cleared and in WPF it is not. I am afraid, that we cannot commit ourselves to modifying this by-design implementation, as this will result in a braking change. With this in mind, I will update the status of the logged bug to Declined.

What we can suggest as a workaround, would be to define a second calculated property in the view model and bind the SelectedItem of RadListBox to it. The logic in the property setter would be to set a null value if the SelectedItem is not present in the source collection of RadListBox.
Completed
Last Updated: 16 Jul 2019 13:46 by ADMIN
Release LIB 2019.2.722 (7/22/2019)
This behavior is also reproduced in RadFileDialogs in the FileBrowserListBox which inherits RadListBox.

As a workaround you can set the IsScrollIntoViewEnabled property of the RadListBox to false
Completed
Last Updated: 30 Sep 2020 10:57 by ADMIN
Release LIB 2020.3.1005 (10/05/2020)

The border of the RadListBox is missing in the Office2019 theme if System.Windows.xaml resource dictionary is not merged.