Skip to content
Snippets Groups Projects

Fix #1289, Fix#928, Fix for missing right border for listview table

Merged Fix #1289, Fix#928, Fix for missing right border for listview table
Merged Vijay Tilak requested to merge vijay.tilak/vtigercrm:master into master
+ 12
2
Compare changes
  • Side-by-side
  • Inline
Files
@@ -326,6 +326,7 @@
$floatContainer.css({
position: useAbsolutePositioning ? 'absolute' : 'fixed',
marginTop: 0,
marginLeft: 1,
top: useAbsolutePositioning ? 0 : 'auto',
zIndex: opts.zIndex
});
@@ -361,7 +362,7 @@
function setFloatWidth(){
var tw = tableWidth($table, $fthCells, true);
var width = $scrollContainer.width() || tw;
var floatContainerWidth = $scrollContainer.css("overflow-y") != 'hidden' ? width - scrollbarOffset.vertical : width;
var floatContainerWidth = $scrollContainer.css("overflow-y") != 'hidden' ? width - scrollbarOffset.vertical - 1: width;
$floatContainer.width(floatContainerWidth);
if(locked){
var percent = 100 * tw / (floatContainerWidth);
Loading