Hello,
I have a problem with the listview widget, that occurs just in IE11.
Please open the demo: http://demos.telerik.com/aspnet-core/listview/keyboard-navigation
Run this command in the console: $('#main').css({ height: 400, overflow: 'auto' }).find('.product-view.k-widget').on('click', function () { alert('clicked'); });
What we do: Set the main area to a small height and set it scrollable. Add click listener to all items and show an alert on click.
If you now click on an item, everything is working as expected. Now scroll down with $('#main').scrollTop(700); and try to click one of the bottom items of the list. In this moment the widget gets the focus and scrolls to its beginning, but the click is not registered. In my application I also have a scrollable container with a listview inside and I need to register item clicks. Our application MUST work in IE11, because our customer is just using IE. It would be great if you analyze the problem and fix it in the future. For now I definately need a workaround asap. Thank you.