<< Click to Display Table of Contents >>
OZUserActionCommand > Tree
OZUserActionCommandのtype中Treeはレポートツリーでレポートを選択する時に発生し、返されるattrは次の通りです。
attr |
説明 |
reportname |
レポート名(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "Tree") {
alert(MyObj.reportname);
}
}
...