<< Click to Display Table of Contents >>
OZUserActionComamand > CopyInputData
OZUserActionCommandのtypeの内、CopyInputDataは、[入力データコピー(json)]、[入力データコピー(xml)]メニューをクリックしたときに発生し、リターンされるattrは、次のとおりです。
attr |
説明 |
clipboardtext |
コピーされたテキスト(string) |
reportname |
レポート名(string) |
type |
入力データタイプ(string) JSON形式の場合、"json"、XML形式の場合は、"xml"でリターンされる |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "CopyInputData") {
alert(MyObj.clipboardtext);
...
}
}
...