You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It could be as simple as adding this around line 250 of the scroller widget, which then if you put in anything 0 or less, the scroller widget does not set a max-height to the outer div
// use max-height, so the height resizes dynamically while filtering
if (maxHt > 0) {
$table.wrap('<div class="' + tscss.scrollerTable + '" style="max-height:' + maxHt + 'px;" />');
}
else {
$table.wrap('<div class="' + tscss.scrollerTable + '" />');
}
Tested in code I am running, not necessarily in jshint or grunt.
Works as expected, meaning that the scroll bar maybe far away, but scroll mouse and arrows allow you to scroll left and right before going all the way to the bottom.
Enhancement request: leave
scroller_height
undefined (null
) to leave table at full height (fixed columns needed) - see Stackoverflow.The text was updated successfully, but these errors were encountered: