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
、ボタンのクリックが$(document).ready
.
手伝って頂けますか ??