https://netsuiteprofessionals.com logo
p

pen one

05/02/2022, 7:39 PM
i have a field that i create in an UE beforeload script that is deployed to a salesorder. How can I move this field to be in a specific fieldgroup and position on the SO?
m

MTNathan

05/02/2022, 7:54 PM
The
container
option in
form.addField()
should, theoretically, allow you to pass in the ID of a fieldgroup, though I've found that to be inconsistent so I usually skip that and use
form.insertField()
instead. That'll let you adjust with position too.
p

pen one

05/02/2022, 8:12 PM
very cool. thanks.
👍 1
3 Views