<< Click to Display Table of Contents >>
OZUserActionCommand > Refresh
OZUserActionCommandのtype中Refreshは周期を設定してレポートを更新する時に発生し、返されるattrは次の通りです。
attr |
説明 |
hhmmss |
周期(string) |
reportname |
レポート名(string) |
type |
更新タイプ(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "Refresh") {
alert(MyObj.hhmmss);
...
}
}
...