mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
Merge feature/improve_nm_performance changes in
This commit is contained in:
@ -380,10 +380,12 @@ var et2_dataview = /** @class */ (function () {
|
||||
*/
|
||||
et2_dataview.prototype._buildGrid = function () {
|
||||
// Create the collection of column ids
|
||||
var colIds = new Array(this.columns.length);
|
||||
var colIds = [];
|
||||
for (var i = 0; i < this.columns.length; i++) {
|
||||
colIds[i] = this.columns[i].id;
|
||||
}
|
||||
if (this.columns[i].visible) {
|
||||
colIds[i] = this.columns[i].id;
|
||||
}
|
||||
}
|
||||
// Create the row provider
|
||||
if (this.rowProvider) {
|
||||
this.rowProvider.destroy();
|
||||
|
Reference in New Issue
Block a user