フィールド名に背景色と背景色と太字にするコードを作成したのですが上手くいかず。。
現在のコードは、下記の通りです。
(function() {
“use strict”;
kintone.events.on([‘app.record.detail.show’, ‘app.record.create.show’, ‘app.record.edit.show’], function(event) {
[…document.querySelectorAll(‘.control-label-text-gaia’)]
.find(el => el.innerText === ‘【契約日】’)
.style = color: mediumvioletred; font-weight: bold; background-color: yellow;
;
});
return event;
});
();