Completed
Last Updated: 09 Jun 2021 18:16 by ADMIN
We are using List box item scroll into view to scroll to the item selected in the list box. However, the scroll is not working in the Chrome browser in a UHD touch screen laptop device.
Unplanned
Last Updated: 04 Nov 2020 11:07 by ADMIN

Replicate by dragging a RadListBox item vertically in the Drag-and-drop demo, on a mobile device.

Unplanned
Last Updated: 02 Jun 2022 12:02 by Lou
Created by: Lou
Comments: 0
Category: ListBox
Type: Feature Request
1

 I would like to implement a list picker with item grouping in the destination Asp.Net RadListBox.

Unfortunately the Telerik Asp.net RadListBox control does not seem to support item grouping natively. I have seen a forum post from 2019 that suggests adding custom group items https://www.telerik.com/forums/subheadings-in-radlistbox  We could do this but would prefer a more native solution.

Unplanned
Last Updated: 18 Sep 2023 11:57 by ADMIN

Setting EnableEmbeddedSkins="false" in RadGrid when FilterType="HeaderContext" is not applied to the ListBox (filterCheckList) hence the following error is thrown:

Telerik.Web.UI.RadGrid+RadListBoxShared with ID='filterCheckList' was unable to find an embedded skin with the name 'MY_THEME'   

 

In Development
Last Updated: 17 Jun 2026 13:19 by ADMIN

We are encountering an issue with the RadListBox control (version 2026.1.225) where the container's scroll position abruptly jumps back to 0 when an item is selected. Tested with Edge, Chrome and Firefox. This issue can be reproduced directly on the official Progress live demo page.

Steps to reproduce:
  1. Open the demo page linked above.
  2. Scroll down to the bottom of the RadListBox using only the mouse wheel.
  3. Click on any item (e.g., "USA") to select it.

Observed behavior:

Immediately upon clicking the item, the container's scroll position snaps back to 0 (the top of the list). This happens consistently across all modern browsers (Edge, Chrome, and Firefox).

Important factual details regarding the scrollbar:
  • The issue does not occur if the user clicks and drags the scrollbar thumb with the left mouse button before selecting an item.
  • The issue does not occur if the user clicks the top or bottom navigation arrows on the scrollbar container to scroll.
  • The unexpected reset to 0 only triggers when scrolling is performed exclusively via the mouse wheel prior to item selection.
Please let us know if there is an official hotfix or an updated internal build available that resolves this scrolling state synchronization issue.
Declined
Last Updated: 14 Jun 2021 14:24 by ADMIN
Created by: Martin
Comments: 1
Category: ListBox
Type: Feature Request
0
RadListBox allows to declaratively bind the Text and Value properties of the ListItems, e.g:

<telerik:RadListBox runat="server" DataTextField="Text" DataValueField="Id">

Unfortunately, this is not possible for the ImageUrl property.

My Suggestion: please allow to also bind the ImageUrl declaratively as known from other controls, e.g:

<telerik:RadListBox runat="server" DataTextField="Text" DataValueField="Id"
    DataImageUrlField="..."

// and maybe even like this:

    DataImageUrlFormatString="..." DataImageUrlFields="...">
Completed
Last Updated: 17 Feb 2014 08:15 by Shailesh
When there are few checkbox items in RadListBox (i.e. there is no scroll bar), checked items cannot be unchecked. The issue is reproducible in iPAD.
Completed
Last Updated: 14 Mar 2014 09:29 by ADMIN
Completed
Last Updated: 16 Mar 2015 12:09 by ADMIN
Completed
Last Updated: 08 Oct 2015 14:57 by ADMIN
Won't Fix
Last Updated: 15 Jan 2016 14:13 by ADMIN
The error is observed when an item that is added from the client-side is to be transferred to other RadListBox from a RadListBox that is loading on demand. Unfortunately the control supports such scenario only when that transfer is made from the server side.
Completed
Last Updated: 04 Oct 2019 15:36 by ADMIN
Completed
Last Updated: 26 Sep 2016 15:52 by ADMIN
ADMIN
Created by: Ivan Danchev
Comments: 0
Category: ListBox
Type: Bug Report
0

			
Unplanned
Last Updated: 22 Apr 2019 13:10 by ADMIN
I have a few instances where I need OnClientSelectedIndexChanging inorder to stop the listbox selectedIndexChanged event from posting back in certain cases. In those cases I stop it from posting back by setting the e.set_cancel(true);

function CheckForListBoxReorder_OnClientEvent(sender, e) {
    if (ListboxReordered()) {
        alert('Please save changes to the bus order.');
        e.set_cancel(true);
    }
}

This works very nicely, but I'm getting many errors because although it looks like it's still selected to the proper row in the listbox the selectedIndex is now -1.
Unplanned
Last Updated: 03 Jan 2020 15:13 by ADMIN
Issue 1 - Items in ListBox missing and/or cut off.
Issue 2 - Incorrect highlighting
Issue 3 - Moving items sometimes doesn't work
Issue 4 - Scrolling of items scrolls the whole page instead (sometimes)
Issue 5 - Bottom ListBox cut off (Chrome dev tools, iPhone 5/SE)
Issue 6 - Scrolling in ListBox sometimes selects items
Issue 7 - Sometimes items in the Listboxes cannot be selected at all. (Intermittent)
Completed
Last Updated: 03 Nov 2025 14:16 by Lou
Release 2025 Q4 (Nov)
The problem happens when you select an item and then press the down arrow button to move it. The item does not move. If you then press the down arrow button a second time, it does move.