In MYOB Acumatica, the PXDropDown box type is generally used to display on a form a
field with a list attribute, such as PXStringList,
PXIntList, or PXDecimalList. However if you
want to display such a field as a set of radio buttons, where one radio button is used
to display and select each single constant value of the field, you can create a
PXGroupBox element and include PXRadioButton
elements in it.
To create a group box for a drop-down data field in a container, perform the following
actions:
In the C# code, find the value (usually it is an one-symbol value) in
the list.
On the Layout Properties tab item, enter this
value in the Value property.
Click Save to save changes in the customization project.
For example, as the result of the described actions for the StatementType
data field with the O and B values defined in the list, you might get the
following ASPX code.