チェックボックスのチェックされた数を数えて分岐処理する
(function(){
'use strict';
const events = [
'app.record.detail.show',
'app.record.create.show',
'app.record.create.change.countries’,
'app.record.edit.show',
'app.record.edit.change.countries'
];
kintone.events.on(events, function(event) {
const checkedCountryCount = event.record.countries.value.length;
if (checkedCountryCount <= 1) {
kintone.app.record.setFieldShown('country', false);
if (checkedCountryCount >= 2) {
kintone.app.record.setFieldShown('country', true);
}
});
})();
チェックボックスにチェックが複数入っていると別のフィールドが表示される。
よろしければサポートをお願いいたします! いただいたサポートは活動費、活動応援費として使用させていただきます。より多くの人の健康のために!