This commit is contained in:
Andreas Österreicher
2008-02-20 15:04:24 +00:00
parent 71900c2021
commit e4d0be0b26
8 changed files with 115 additions and 54 deletions
+12
View File
@@ -219,4 +219,16 @@ function MenulistGetSelectedValue(id)
return children[0].value;
else
return '';
}
// *****
// * Liefert den Text aus einem Tree
// * Parameter: tree ... Referenz auf den Tree
// * col ... id der Spalte
// * idx ... Zeilenindex im Tree
// *****
function getTreeCellText(tree, col, idx)
{
col = tree.columns ? tree.columns[col] : col;
return tree.view.getCellText(idx, col);
}