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();
});
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();
});