mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 00:14:57 +02:00
Nm resize fix:
- Fix dataview grid resize not taking care of category color border - Fix Category borders make headers misaligned
This commit is contained in:
@ -163,6 +163,9 @@ var et2_dataview = (function(){ "use strict"; return Class.extend({
|
||||
{
|
||||
this.width = _w;
|
||||
|
||||
// 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());
|
||||
|
||||
// Rebuild the column stylesheets
|
||||
this.columnMgr.setTotalWidth(_w - this.scrollbarWidth);
|
||||
this._updateColumns();
|
||||
|
Reference in New Issue
Block a user