i have a field that i create in an UE beforeload s...
# suitescript
p
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
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
very cool. thanks.
👍 1