(function() {
“use strict”;
var events = [‘app.record.edit.submit’,‘app.record.create.submit’,‘app.record.index.edit.submit’,
‘app.record.create.change.ラジオボタン’,‘app.record.edit.ラジオボタン’,
‘app.record.create.change.文字列__複数行__4’,‘app.record.edit.文字列__複数行__4’];
kintone.events.on(events, function(event) {
var record = event.record;
//要素取得
var process = record[‘ラジオボタン’][‘value’];
var endday = record[‘文字列__複数行__4’][‘value’];
if (record[‘文字列__複数行__4’][‘value’]) { // 値が設定されている場合
process = “表示”;
}else {
process = “”;
}
record[‘ラジオボタン’][‘value’] = process;
(function() {
“use strict”;
var events = [‘app.record.edit.submit’,‘app.record.create.submit’,‘app.record.index.edit.submit’,
‘app.record.create.change.ラジオボタン’,‘app.record.edit.ラジオボタン’,
‘app.record.create.change.文字列__複数行__4’,‘app.record.edit.文字列__複数行__4’];
kintone.events.on(events, function(event) {
var record = event.record;
//要素取得
var process = record[‘ラジオボタン’][‘value’];
if (record[‘文字列__複数行__4’][‘value’]) { // 値が設定されている場合
process = “表示”;
}else {
process = “非表示”;
}
record[‘ラジオボタン’][‘value’] = process;