mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
Don't try to resize if the columns are not set yet - there's nothing to resize
This commit is contained in:
@ -156,6 +156,9 @@ var et2_dataview = Class.extend({
|
||||
* Resizes the grid
|
||||
*/
|
||||
resize: function(_w, _h) {
|
||||
// Not fully initialized yet...
|
||||
if (!this.columnMgr) return;
|
||||
|
||||
if (this.width != _w)
|
||||
{
|
||||
this.width = _w;
|
||||
|
Reference in New Issue
Block a user