Revert "Api: Nextmatch - Do not generate DOM nodes for hidden columns"

This reverts commit 0f3a1660ff.
This commit is contained in:
nathangray
2019-12-04 09:49:21 -07:00
parent 9885a6960d
commit 673327da1e
4 changed files with 12 additions and 38 deletions

View File

@ -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