Lines Matching refs:tree
78 * Top-down tree representation of Column hierarchy. Used to create DOM
81 * @property tree
84 tree: null,
125 // DOM tree representation of all Columns
126 var tree = [],
150 if(!tree[depth]) {
151 tree[depth] = [];
185 if(!tree[depth+1]) {
186 tree[depth+1] = [];
198 // Add the Column to the top-down dom tree
199 tree[depth].push(column);
209 this.tree = tree;
315 // Determine ROWSPAN value for each Column in the DOM tree
316 function parseDomTreeForRowSpan(tree) {
354 for(m=0; m<tree.length; m++) {
355 currentRow = tree[m];
372 parseDomTreeForRowSpan(this.tree);