<< Click to Display Table of Contents >>
OZUserActionCommand > Close
OZUserActionCommand의 type 중 Close는 보고서를 닫을 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
index |
보고서 인덱스(int). Zero-Based Index |
reportname |
보고서 이름(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "Close") {
alert(MyObj.index);
...
}
}
...