=load( local!dropDownFieldValue:null, local!radioButtonFieldValue:"No", a!formLayout( label: "Lorem Ipsum", instructions: "Lorem Ipsum", firstColumnContents: { a!dropdownField( label:"Select the dropdown field"&local!dropDownFieldValue, placeholderLabel:"Please select", choiceLabels:{"A","B","C"}, choiceValues:{"A","B","C"}, value:local!dropDownFieldValue, saveInto:{local!dropDownFieldValue, a!save(local!radioButtonFieldValue,null) } ) , a!radioButtonField( label:"Selected Radio Button" & "Value":local!radioButtonFieldValue, choiceLabels:{"Yes","No"}, choiceValues:{"Yes","No"}, value:if(rule!APN_isBlank( local!radioButtonFieldValue),null,local!radioButtonFieldValue), saveInto:local!radioButtonFieldValue ) }, secondColumnContents: { /* Add components here for a two-column form */ }, buttons: a!buttonLayout( primaryButtons: { a!buttonWidgetSubmit( label: "Submit", style: "PRIMARY", saveInto: {} ) }, secondaryButtons: { a!buttonWidgetSubmit( label: "Cancel", style: "NORMAL", value: true, saveInto: ri!cancel, skipValidation: true ) } ), validations: {} ) )