mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Also take grid border width into account - should help with nm width in Firefox.
See d290485058
This commit is contained in:
parent
8789d8d944
commit
2ffcdf5dc9
@ -163,6 +163,9 @@ var et2_dataview = (function(){ "use strict"; return Class.extend({
|
||||
{
|
||||
this.width = _w;
|
||||
|
||||
// Take grid border width into account
|
||||
_w -= (this.table.outerWidth(true) - this.table.innerWidth());
|
||||
|
||||
// Take grid header border's width into account. eg. category colors may add extra pixel into width
|
||||
_w = _w - (this.thead.find('tr').outerWidth() - this.thead.find('tr').innerWidth());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user