Solved
Radio Button Not Saving after clicking off
EDIT: Got the value to save but the dropdown box doesn't show up when the correct value (boolean true) is selected
a!radioButtonField(
label: "Is Jira Access Required?",
labelPosition: "ABOVE",
choiceLabels: {"Yes", "No"},
choiceValues: {true, false},
value: ri!record['recordType!{d327a5dc-18d4-4ffd-8bdf-6a22b134677f}DS Contractor.fields.{2463d484-b544-48a5-813c-701935313606}jiraAccess'],
saveInto: ri!record['recordType!{d327a5dc-18d4-4ffd-8bdf-6a22b134677f}DS Contractor.fields.{2463d484-b544-48a5-813c-701935313606}jiraAccess'],
required: true,
choiceLayout: "COMPACT",
validations: {}
),
a!dropdownField(
label: "Which Department Requires Access?",
labelPosition: "ABOVE",
placeholder: "--- Select a Value ---",
choiceLabels: cons!DS_deptChoice1,
choiceValues: cons!DS_deptChoice1,
value: ri!deptChoice1,
saveInto: ri!deptChoice1,
searchDisplay: "AUTO",
showWhen: ri!radioValues2 = true,
required: true(),
validations: {}
- working properly