我正在使用来自http://manos.malihu.gr/jquery-custom-content-scroller/的自定义滚动条。
我在包含 gridview 的 div 上使用它。当新行添加到 Gridview 时,它超过了大小,滚动条不会显示。
我还有另一个问题里面有一个 div,我正在使用一个按钮来切换该 div 的显示。
我无法更新滚动条
(function($) {
$(window).load(function() {
$("#rightFixed").mCustomScrollbar({
scrollInertia: 150,
autoHideScrollbar: true,
updateOnBrowserResize: true,
updateOnContentResize: true,
theme: "dark-2"
});
});
})(jQuery);
$(function () {
$("#showTax").click(function () {
$("#cartTaxDiv").slideToggle();
$(this).text($(this).text() == 'Show Tax' ? 'Hide Tax' : 'Show Tax');
$('#rightFixed').mCustomScrollbar("update");
});
});
滚动条初始化事件在其中,$(window).load
而 Button Click 在$(document).ready
.
你能帮助我吗 ??