mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
Fix missing column nodes
This commit is contained in:
parent
0f3a1660ff
commit
2647361348
@ -274,13 +274,9 @@ var et2_nextmatch_rowProvider = (function(){ "use strict"; return ClassWithAttri
|
|||||||
|
|
||||||
// Check each column
|
// Check each column
|
||||||
var columns = _widget.getChildren();
|
var columns = _widget.getChildren();
|
||||||
|
|
||||||
for(var i = 0; i < columns.length; i++)
|
for(var i = 0; i < columns.length; i++)
|
||||||
{
|
{
|
||||||
// If column is hidden, don't process it
|
|
||||||
if(this._context && this._context.columns && this._context.columns[i] && !this._context.columns[i].visible)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
columns[i].iterateOver(process, this);
|
columns[i].iterateOver(process, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user