Home | History | Annotate | Download | only in scripts

Lines Matching refs:expander

1 // expand/collapse button (expander) is added if height of a cell content 
5 // Height in pixels of an expander image.
8 // Path to images for an expander.
60 // Create an expander and an additional wrapper for a cell content.
66 // | ---- expander ---- |
75 var expander = document.createElement("img");
76 with (expander.style) { display = "block"; paddingTop = "5px"; }
77 expander.src = imgPath + "ellipses_light.gif";
78 expander.id = "expander" + idxStr;
80 // Add mouse calbacks to expander.
81 expander.onclick = function() {
89 expander.onmouseover = function() {
94 expander.onmouseout = function() {
102 expandableDiv.appendChild(expander);
137 // Invoked when an expander is pressed; expand/collapse a cell.
165 var expander = document.getElementById("expander" + idxStr);
171 expander.src = imgPath + "ellipses_light.gif";
176 expander.src = imgPath + "arrows_light.gif";