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