In Development
Last Updated: 16 Sep 2026 12:22 by ADMIN
Scheduled for 2026 Q3 SP1
Peter
Created on: 12 Aug 2026 12:54
Category: MultiSelect
Type: Bug Report
2
MultiSelect Virtualization doesn't work with latest releases
Starting with Q1 2026, the MultiSelect Virtualization throws an error when you select/deselect an item. This behavior can be observed in the Virtualization Demo.
2 comments
ADMIN
Vasko
Posted on: 16 Sep 2026 12:22

Hello everyone,

We have escalated this issue and have found the below workaround that can be used for now until the bug is officially fixed:

Sys.Application.add_init(function () {
    let kendo = window.$telerik._kendo;
    let VirtualList = kendo.ui.VirtualList;
    // keep a reference in case you need to call the original implementation
    let originalGetElementIndex = VirtualList.fn.getElementIndex;

    VirtualList.fn.getElementIndex = function (element) {
        if (!(element instanceof kendo.jQuery)) {
            return undefined;
        }
        return parseInt(element.attr('data-offset-index'), 10);
    };
});

Please test it and let us know if it fixes the issue on your end.

Regards,
Vasko
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources
Timothy
Posted on: 15 Sep 2026 21:04
One of my project's teams is seeing this issue too. The dropdown is completely unusable even on the demo page, and sticking with an older version isn't really an option given the recent critical security issues.