<< 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);
...
}
}
...