mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 23:27:46 +02:00
Revert "Api: Nextmatch - Do not generate DOM nodes for hidden columns"
This reverts commit 0f3a1660ff
.
This commit is contained in:
@ -493,13 +493,10 @@ var et2_dataview = (function(){ "use strict"; return Class.extend({
|
||||
*/
|
||||
_buildGrid: function() {
|
||||
// Create the collection of column ids
|
||||
var colIds = new Array();
|
||||
var colIds = new Array(this.columns.length);
|
||||
for (var i = 0; i < this.columns.length; i++)
|
||||
{
|
||||
if(this.columns[i].visible)
|
||||
{
|
||||
colIds[i] = this.columns[i].id;
|
||||
}
|
||||
colIds[i] = this.columns[i].id;
|
||||
}
|
||||
|
||||
// Create the row provider
|
||||
|
Reference in New Issue
Block a user