Unplanned
Last Updated: 01 Jun 2020 16:21 by ADMIN
Created by: XiMnet Malaysia
Comments: 0
Category: ListBox
Type: Feature Request
5
Hi,

Would love to have feature for reorder animation and drop placeholder when user is reordering the item(s) in the Radlistbox.

A example would be the list in invisionapp.com as attached.

Another example would be like JQUERYUI's sortable plugin. 
URL: https://jqueryui.com/sortable/#placeholder.

Thanks.
Unplanned
Last Updated: 30 Apr 2020 08:49 by ADMIN
ADMIN
Created by: Rumen
Comments: 2
Category: ListBox
Type: Feature Request
4
The control should provide support for the JAWS screen readers, which will enable it for use by visually impaired users.

More details are available in the following forum thread - https://www.telerik.com/forums/how-is-listbox-usable-for-screen-readers
Unplanned
Last Updated: 05 Oct 2018 16:29 by Michael Schweighardt
Declined
Last Updated: 02 Jan 2020 17:04 by ADMIN
Unplanned
Last Updated: 03 Nov 2014 08:45 by ADMIN
ADMIN
Created by: Peter Filipov
Comments: 0
Category: ListBox
Type: Feature Request
2
Now, in WCF binding we return RadListBoxItemData collection which is not consistent with RadComboBox and RadDropDownList controls where we use RadControlNameData object.
Unplanned
Last Updated: 20 Dec 2013 11:07 by Carlos
Completed
Last Updated: 31 Oct 2019 11:45 by ADMIN
Release R3 2019 SP1
Completed
Last Updated: 25 Nov 2015 16:50 by ADMIN
Completed
Last Updated: 19 Jan 2016 17:12 by ADMIN
Completed
Last Updated: 25 May 2016 14:07 by ADMIN
Completed
Last Updated: 23 Mar 2016 13:27 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category: ListBox
Type: Bug Report
1

			
Won't Fix
Last Updated: 08 Jun 2022 08:23 by ADMIN
ADMIN
Created by: Ivan Danchev
Comments: 1
Category: ListBox
Type: Bug Report
1

			
Unplanned
Last Updated: 21 Oct 2016 10:45 by ADMIN
When using:

Value = "(null)"
Text = "(no user)"

as item in the ListBox, the filter must work correctly, and after opening the menu the item should be checked if previously filtered.

Additionally if the item have NULL value instead of "(null)" The visible value must be localized. 
Unplanned
Last Updated: 08 Nov 2016 08:53 by ADMIN
Unplanned
Last Updated: 04 Aug 2017 13:42 by ADMIN
ADMIN
Created by: Ivan Danchev
Comments: 1
Category: ListBox
Type: Feature Request
1

			
Completed
Last Updated: 09 Jul 2018 12:48 by ADMIN
A workaround is to disable the embedded jQuery and use an older version (for example, 1.11.1 which is the previous version the suite used): https://docs.telerik.com/devtools/aspnet-ajax/controls/scriptmanager/disabling-the-embedded-jquery

Repro steps:

1. put a listbox on the page
2. configure it so it does postbacks (e.g., on selection changed, or any other feature)
3. ivnoke said postback (e.g., select an item)

Expected: the action is carried off

Actual: Firefox throws TypeError: access to strict mode caller function is censored

Sample markup

        <telerik:RadListBox runat="server" ID="rlb1" OnSelectedIndexChanged="rlb1_SelectedIndexChanged" AutoPostBack="true">
            <Items>
                <telerik:RadListBoxItem Text="first" Selected="true" />
                <telerik:RadListBoxItem Text="second" />
            </Items>
        </telerik:RadListBox>
1 2 3