<< Click to Display Table of Contents >>
OZUserActionCommand > Binding
OZUserActionCommandのtype中BindingはOZ Viewerがレポートをバインディングする時に発生し、返されるattrは次の通りです。
attr |
説明 |
reportname |
レポート名(string) |
state |
バインディング状態(string) バインディング開始直前に"false"、バインディング完了後に"true"で返される |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "Binding") {
alert(MyObj.reportname);
...
}
}
...