Unplanned
Last Updated: 21 Jul 2017 13:36 by ADMIN
ADMIN
Peter Milchev
Created on: 21 Jul 2017 13:33
Category: ImageGallery
Type: Bug Report
0
CurrentScrollPosition is not synchronized when ThumbnailsAreaSettings EnableZoneScroll="true" and ShowScrollbar="true"
https://www.screencast.com/t/uEns65TeVAW
1 comment
ADMIN
Peter Milchev
Posted on: 21 Jul 2017 13:34
Workaround: 
var $ = $telerik.$;
function pageLoad() {
    $('.rigThumbnailsList').parent().on('scroll', function (e) {
        $find('<%= RadImageGallery3.ClientID%>').get_thumbnailsArea()._currentScrollPosition = e.target.scrollLeft;
    });
}