Lines Matching refs:tree
481 * Top-down tree representation of Column hierarchy. Used to create DOM
484 * @property tree
487 tree: null,
528 // DOM tree representation of all Columns
529 var tree = [],
553 if(!tree[depth]) {
554 tree[depth] = [];
588 if(!tree[depth+1]) {
589 tree[depth+1] = [];
601 // Add the Column to the top-down dom tree
602 tree[depth].push(column);
612 this.tree = tree;
718 // Determine ROWSPAN value for each Column in the DOM tree
719 function parseDomTreeForRowSpan(tree) {
757 for(m=0; m<tree.length; m++) {
758 currentRow = tree[m];
775 parseDomTreeForRowSpan(this.tree);
1325 var tree = cs.tree,
1328 len = tree.length,
1337 // Iterate tree of columns to add THEAD rows
1341 columns: tree[i],