This is a migrated thread and some comments may be shown as answers.

dropdownlist scrollbar lock

0 Answers 78 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 16 Nov 2012, 10:02 AM
evaluating kendo ui

on OSX with Safari 4

using free download files dated 10 July 12 viz. kendoui/examples/web/dropdownlist/index.html

if you duplicate the 4 no. cap size options twice to give 12 options the scrollbar is displayed but locked.

similar lock happens for combobox / autocomplete / timepicker with when scrollbar added

can this be fixed ?

1.
if you show the display:none list with $("#dropdownlist-list").show() the scrollbar is working

2.
possible workaround is to replace scrollbar

$("#dropdownlist-list").css({width:100}).jScrollPane(); which does not display scrollbar

$("#dropdownlist-list").mouseenter(function(){

$(this).css({width:100}).jScrollPane();

}).mouseleave(function(){

$(this).hide();
});

No answers yet. Maybe you can help?

Tags
DropDownList
Asked by
Michael
Top achievements
Rank 1
Share this question
or