<< Click to Display Table of Contents >>

OZUserActionCommand > SearchParameter

OZUserActionCommand의 type 중 SearchParameter는 조회 툴바를 이용해 보고서와 데이터를 새로 고침할 때 발생하며, 리턴되는 attr은 다음과 같습니다.

attr

설명

action

조회 타입(string)

fieldname

필드 이름(string)

odiname

ODI 이름(string)

reportname

보고서 이름(string)

value

필드 값(string)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

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

   if(type == "SearchParameter") {

       alert(MyObj.action);

       ...

   }

}

...