<< Click to Display Table of Contents >>

OZUserActionCommand > Binding

OZUserActionCommand의 type 중 Binding은 오즈 뷰어가 보고서를 바인딩할 때 발생하며, 리턴되는 attr은 다음과 같습니다.

attr

설명

reportname

보고서 이름(string)

state

바인딩 상태(string)

"false"(바인딩 시작 직전), "true"(바인딩 완료 후) 중 하나의 값으로 리턴됨

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

   var MyObj = eval('(' + attr + ')');

   if(type == "Binding") {

       alert(MyObj.reportname);

       ...

   }

}

...