kintone 플러그인 개발 메모 그 3 (플러그인 설정 화면에 버튼을 붙인다)

전회의 계속입니다.
그 2 은 이쪽
설정 화면에 버튼을 놓습니다.

이런 흐름
  • config.html에 버튼 설치
  • config.js에 버튼을 눌렀을 때 팝업을 표시하는 코드를 작성합니다.

    설정 화면에 버튼 설치



    config.html
    <html>
        <body>
            <h1>Hello,world設定画面</h1>
            <div id="form">
                <button type="button" id="button_submit">押してください</button>
            </div>
        </body>
    </html>
    



    config.js가 버튼을 누르면 팝업을 표시하게합니다.



    config.js
    (function () {
        "use strict";
        window.addEventListener('DOMContentLoaded', function() {
            document.getElementById("button_submit").onclick = function() {
                window.alert("押しましたね!");
            };
        });
    })();
    



    다음 번에는 설정치를 등록·읽어 보고 싶습니다.
  • 좋은 웹페이지 즐겨찾기