Fixing bug 47536 - column hiding is broken. r=hyatt.

This commit is contained in:
bryner%uiuc.edu 2000-08-03 22:09:57 +00:00
parent fc5313569d
commit a85b7867cd

View File

@ -28,6 +28,9 @@ function BuildTreePopup( treeColGroup, treeHeadRow, popup, skipCell )
var currTreeCol = treeHeadRow.firstChild;
var currColNode = treeColGroup.firstChild;
while (currTreeCol) {
if (currColNode.tagName == "splitter")
currColNode = currColNode.nextSibling;
if (skipCell != currTreeCol) {
// Construct an entry for each cell in the row.
var columnName = currTreeCol.getAttribute("value");