77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
/* -*- Mode: Java; tab-width: 4; c-basic-offset: 4; -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Dave Hyatt (hyatt@netscape.com)
|
|
*/
|
|
|
|
function BuildTreePopup( treeColGroup, treeHeadRow, popup, skipCell )
|
|
{
|
|
var popupChild = popup.firstChild;
|
|
if (popupChild)
|
|
return;
|
|
|
|
var currTreeCol = treeHeadRow.firstChild;
|
|
var currColNode = treeColGroup.firstChild;
|
|
while (currTreeCol) {
|
|
if (skipCell != currTreeCol) {
|
|
// Construct an entry for each cell in the row.
|
|
var columnName = currTreeCol.getAttribute("value");
|
|
var v = document.createElement("menuitem");
|
|
v.setAttribute("type", "checkbox");
|
|
v.setAttribute("value", columnName);
|
|
if (columnName == "") {
|
|
var display = currTreeCol.getAttribute("display");
|
|
v.setAttribute("value", display);
|
|
}
|
|
v.setAttribute("colid", currColNode.id);
|
|
var hidden = currColNode.getAttribute("hidden");
|
|
if (hidden != "true")
|
|
v.setAttribute("checked", "true");
|
|
|
|
popup.appendChild(v);
|
|
|
|
v.setAttribute("oncommand", "ToggleColumnState(this, document)");
|
|
}
|
|
|
|
currTreeCol = currTreeCol.nextSibling;
|
|
currColNode = currColNode.nextSibling;
|
|
}
|
|
}
|
|
|
|
function DestroyPopup(element)
|
|
{
|
|
/*
|
|
while (element.firstChild) {
|
|
element.removeChild(element.firstChild);
|
|
}
|
|
*/
|
|
}
|
|
|
|
function ToggleColumnState(popupElement, doc)
|
|
{
|
|
var colid = popupElement.getAttribute("colid");
|
|
var colNode = doc.getElementById(colid);
|
|
if (colNode) {
|
|
dump(colNode.id + "\n");
|
|
var checkedState = popupElement.getAttribute("checked");
|
|
if (checkedState == "true")
|
|
colNode.removeAttribute("hidden");
|
|
else colNode.setAttribute("hidden", "true");
|
|
}
|
|
}
|