サンプルスクリプト
async function onChange(forpage,oldVal,newVal,executeOnLoad){
if(executeOnLoad){
return;
}
var msg = weatherdata.weather[0].説明;
current.Job.setValue(current.Layout.Fields.<select-Destination-weather-parameter-こちら>.id, msg);
var temp = weatherdata.main.temp - 270;
var str_a = temp.toString();
var result = Number(str_a.slice(0, 5));
var tempmsg = result + ' Degree Celsius';
current.Job.setValue(current.Layout.Fields.<select-Destination-temperature-parameter-こちら>.id, tempmsg);
}