<< Click to Display Table of Contents >>
OZUserActionCommand > ReusableSign
OZUserActionCommand의 type 중 ReusableSign은 불러오기 기능으로 서명을 입력한 후 수정없이 바로 서명 입력을 종료할 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
compname |
컴포넌트 이름(string) |
reportindex |
보고서 인덱스(int). Zero-Based Index |
reportname |
보고서 이름(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "ReusableSign") {
alert(MyObj.compname);
...
}
}
...