Alexander Cuadros
10/08/2024, 9:55 PMnewRecord.setValue({
fieldId: 'customform',
value: 88
});
but i test with other field like "memo" and work, what i need to do? thanks!!!Fakhri Hilmi
10/09/2024, 7:45 AMfunction pageInit(context){
let rec = context.newRecord;
if(context.type==='create'){
rec.setValue({
fieldId: 'customform',
value: 88,
ignoreFieldChange: false
});
}
}