フィールド名をフォント変更

フィールド名に背景色と背景色と太字にするコードを作成したのですが上手くいかず。。

現在のコードは、下記の通りです。

(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;
  });
();

樫原 様

こんにちは。

おそらく最後の部分ですね。

※修正前

 });
();

※修正後

})();

 

これで動かなかったら、そもそものセレクターが間違えてる可能性があると思います。

新屋 育男

おはようございます。

できました!

ありがとうございます。

勉強します。。