<< Click to Display Table of Contents >>

OZUserActionCommand > RequestData

OZUserActionCommandのtype中RequestDataはOZ Viewerからデータを要請する時に発生し、返されるattrは次の通りです。

attr

説明

reportname

レポート名(string)

state

要請状態(string)

要請開始直前に"false"、要請が完了された後に"true"で返される

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

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

   if(type == "RequestData") {

       alert(MyObj.reportname);

       ...

   }

}

...