kintone 플러그인 개발 메모 그 3 (플러그인 설정 화면에 버튼을 붙인다)
그 2 은 이쪽
설정 화면에 버튼을 놓습니다.
이런 흐름
설정 화면에 버튼 설치
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("押しましたね!");
};
});
})();
다음 번에는 설정치를 등록·읽어 보고 싶습니다.
<html>
<body>
<h1>Hello,world設定画面</h1>
<div id="form">
<button type="button" id="button_submit">押してください</button>
</div>
</body>
</html>
config.js
(function () {
"use strict";
window.addEventListener('DOMContentLoaded', function() {
document.getElementById("button_submit").onclick = function() {
window.alert("押しましたね!");
};
});
})();
다음 번에는 설정치를 등록·읽어 보고 싶습니다.
Reference
이 문제에 관하여(kintone 플러그인 개발 메모 그 3 (플러그인 설정 화면에 버튼을 붙인다)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sy250f/items/57d22169aaa6a98fbd25텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)