Closed eQuorumRayNewman closed 7 years ago
The problem that I'm having is when dgrid is constructed without a reference to a domNode and is appended to a node later the column hide does not display. To duplicate the problem change the ColumnHider.html test case like this;
grid = window.grid = new (declare([Grid, Keyboard, Selection, ColumnHider]))({ collection: testStore, columns: getColumns() }); //}, "grid"); document.getElementById("grid").appendChild(grid.domNode);
Guess I should have tried the last before reporting this. The fix for issue (#1372) solves this problem also.
The problem that I'm having is when dgrid is constructed without a reference to a domNode and is appended to a node later the column hide does not display. To duplicate the problem change the ColumnHider.html test case like this;