In a UE Script on a Custom Record I would like to ...
# suitescript
j
In a UE Script on a Custom Record I would like to add a field group and a single field and have both of these span the entire width of the page. How can I achieve this? Counterintuitively, setting the fieldgroup isSingleColumn to true makes it even NARROWER and look terrible.
e
I haven't studied the CSS at all, but if I had to guess, Field Groups are likely contained to the bounds of the
<form>
, and the
<form>
likely doesn't span the full page width. I'd expect you'd need to hack the CSS to really span the entire page, like the navigation banner or similar.
j
I solved it with a combination of
updateLayoutType
,
updateBreakType
, and
updateDisplaySize
1