パソコンでは下記のJavascriptでフィールド名が太文字の赤になったのですがmobileでは反映されません。
非対応なのでしょうか?
何卒よろしくお願い致します。
(function() {
"use strict";
kintone.events.on(['app.record.create.show',
'app.record.edit.show',
'mobile.app.record.create.show',
'mobile.app.record.edit.show'
], function(event) {
[].forEach.call(document.getElementsByClassName("control-label-text-gaia"), function(element){
if(element.innerText === "mobileでもここの文字を赤く太くしたい"){
element.style.color = "red";
element.style.fontWeight = "bold";
}
});
return event;
});
})();