Unplanned
Last Updated: 24 Jan 2024 22:10 by George
Created by: Enrico
Comments: 2
Category: ListBox
Type: Feature Request
24
How ironic that other controls have capability on grouping while the listbox is the solely exception. Hope you can include this on the next build.
Completed
Last Updated: 11 Jan 2024 06:56 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)

Bug report

The ListBox toolbar buttons are not visible if you set toolbar position to "bottom"

Regression with v2023.1.314

Reproduction of the problem

Open this Dojo example - https://dojo.telerik.com/iXerajOno/11

Current behavior

The toolbar buttons are not visible

Expected/desired behavior

The toolbar buttons should be visible on the bottom

Environment

  • Kendo UI version: 2023.2.606
  • Browser: [all]
Completed
Last Updated: 06 Dec 2023 06:57 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)
Created by: Will
Comments: 1
Category: ListBox
Type: Bug Report
1

Bug report

When moving all the items from the right ListBox to the left, an error is thrown on the console.

Regression with 2022.3.1109

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/onazUkoT/9
  2. Open the console.
  3. Move all the items from the left ListBox to the right

Workaround:

kendo.ui.ListBox.ToolBar.fn._focusTool = function() {
          if(this.element) {
            this.element.find(".k-button").not("[tabindex=-1]").trigger("focus");
          }
        };

Current behavior

An error is thrown.

Expected/desired behavior

No errors should be thrown.

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all]
Unplanned
Last Updated: 28 Nov 2023 09:47 by n/a

Bug report

When ListBox contains a long string it does not display a scroller.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliKondova/ASuvOjUT

Current behavior

There is no scroller, thus the user can not see the entire text. Also, the listbox is shifted a little bit to the left.

Expected/desired behavior

There should be a scroller and the entire ListBox should be visible.

The issue is a regression starting with 2022 R1 (2022.1.119) release

Пossible workaround

  
<style>
 .k-list-content{
      overflow: auto;       
}

.k-listbox .k-list-scroller {
      min-width: 0;
}

.k-selected{
        width: fit-content;
}
   
</style>

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all ]
Completed
Last Updated: 23 Nov 2023 07:54 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)

Bug report

When the user click on the buttons in the ListBox the focus is alwasy moved to the first button.

Reproduction of the problem

  1. Open the Demo - https://demos.telerik.com/kendo-ui/listbox/index
  2. Select an item and click the 'down arrow' button

Current behavior

The first button ('up arrow') is getting focused.

Expected/desired behavior

The clicked button should remain focused.

The issue is a regression starting with the 2022 R3 SP1 (2022.3.1109) version

Environment

  • Kendo UI version: 2023.3.1010
  • Browser: [all ]
Unplanned
Last Updated: 10 Nov 2023 12:49 by ADMIN
Created by: Pribadi
Comments: 0
Category: ListBox
Type: Feature Request
1

Hi Team,

I would like to request inline and incell editing functionality for the Kendo UI ListBox. 

Thank you!

Declined
Last Updated: 20 Jan 2022 11:59 by ADMIN
Created by: Ricky
Comments: 0
Category: ListBox
Type: Feature Request
1
The new ListBox component already has the option to set a template for its items in kendo.ui.ListBoxOptions. Unintuitively the angular hooks for compile and cleanup for not fired when using that template.

Note that these hooks are not only used by classic AngularJS but also by other frameworks.

Please complete the component to fully support item templates like ListView, Grid, TreeView and others do.
Unplanned
Last Updated: 30 Apr 2020 11:57 by ADMIN
Created by: Jason
Comments: 1
Category: ListBox
Type: Feature Request
1

Currently you can set draggable to true, however, when you want to drag the item to the top or bottom there is no auto scroll. This is not efficient because you need to constantly drop the item in order to move it where you want it. Please add autoScroll option similar to what you have on the kendoDraggable (https://docs.telerik.com/kendo-ui/api/javascript/ui/draggable/configuration/autoscroll) for each list item.

 

Thank you.

Unplanned
Last Updated: 09 Apr 2020 12:34 by ADMIN
Created by: Dennis
Comments: 3
Category: ListBox
Type: Feature Request
2

Currently, the Kendo ListBox has methods to return -- the DOM Elements using items(); the Selected DOM Elements using select(); ALL of the Data Items using .dataItems() and a SINGLE dataItem using dataItem(selector).

An additional method that would be extremely useful for this control, would be to return the SELECTED DATA ITEMS perhaps using a method  selectedDataItems().

Here is a JavaScript function that can be used as a template for providing the functionality (of course, it needs additional error checking):

    function getSelectedItems(lstName) {
         var selectedItems = [];
         //var lstItems = $(lstName).data("kendoListBox").items();
         var lstItems = $(lstName).data("kendoListBox").select();

        $(lstItems).each(function (index) {
            var selected = $(this).hasClass("k-state-selected");
            if (selected) {
                var id = "#" + $(this).attr("id");
                var dataItem = $(lstName).data("kendoListBox").dataItem(id);
                selectedItems.push(dataItem);
            }
        });
        return selectedItems;
    }

In a control such as a ListBox that inherently requires the functionality of "selection" -- then your user community would definitely need a way to not only return the selected DOM elements but also return the selected dataItems.

Hopefully, we see this functionality added to the Kendo ListBox very soon.

Unplanned
Last Updated: 13 Mar 2020 08:53 by ADMIN
Created by: Levi
Comments: 0
Category: ListBox
Type: Feature Request
2
There should be a flag to keep the ListBox items sorted.
Unplanned
Last Updated: 13 Mar 2020 08:52 by ADMIN
Created by: Mike
Comments: 1
Category: ListBox
Type: Feature Request
10
One immediate need I have is to have the ability to add entries to the collection.  I'd like to have an add button in the toolbar.  I'd like to be able to add custom buttons natively.
Unplanned
Last Updated: 13 Mar 2020 08:51 by ADMIN
Created by: Levi
Comments: 0
Category: ListBox
Type: Feature Request
3
ListBox should support the value MVVM binding, similar to the multiselect.
Completed
Last Updated: 24 Jan 2020 11:25 by ADMIN
Created by: Stefan
Comments: 1
Category: ListBox
Type: Feature Request
4
It would be very interesting to be able to use the CRUD operations of the DataSource associated with the ListBox, to reflect on the server the changes made to the ListBox widget. CRUD methods are not currently executed after making changes and calling the DataSource sync method.
Unplanned
Last Updated: 24 Jan 2020 09:10 by ADMIN
Currently in the listbox if you move an item up or down the list to reorder it, and the number of items in the list is greater than what's displayed on the screen, then the selected item doesn't stay in the display when it moves down the list.  The listbox should scroll as a selected item moves up or down off the display of the control so that it always stays in view. (Your Listbox in your ASP.NET Ajax suite already does this).  And this functionality should work whether you are using the keyboard, clicking the move up/down toolbar buttons or dragging and dropping the selected item.