<< Click to Display Table of Contents >>
OZUserActionCommand > MovePage
OZUserActionCommand의 type 중 MovePage는 페이지를 이동할 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
direction |
이동 방향(string) |
index |
이동된 페이지 번호(int) |
reportname |
보고서 이름(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "MovePage") {
alert(MyObj.direction);
...
}
}
...