<< Click to Display Table of Contents >>
OZUserActionCommand > ClickSubscreenToolbar
OZUserActionCommand의 type 중 ClickSubscreenToolbar는 서브 스크린에서 툴바의 버튼을 클릭할 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
buttontype |
버튼 타입(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "ClickSubscreenToolbar") {
alert(MyObj.buttontype);
}
}
...