Issue with Radio button Field

Certified Senior Developer

Hii,

I am unable to select NA option , for YES or NO Its  working fine , how can i resolve this, 

i have to save

 a!radioButtonField(
                  label: "",
                  choiceLabels: { "Yes", "No", "N/A" },
                  choiceValues: { 1, 0, "NA" },
                  value: fv!item['recordType!{f42d5bd8-9c50-4910-b251-13ec6bf9fdb6}GAI App Review.fields.{899275d5-d9e3-4030-9291-883eaf45d2c6}reviewerAnswerBool'],
                  saveInto: {
                    local!a,
                    a!save(
                      fv!item['recordType!{f42d5bd8-9c50-4910-b251-13ec6bf9fdb6}GAI App Review.fields.{899275d5-d9e3-4030-9291-883eaf45d2c6}reviewerAnswerBool'],
                      if(local!a = "NA", {}, local!a)
                    )
                  },
this value in to boolean type column

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to David J (NTT DATA)

    This modification will not resolve the issue and Appian doesn't accept two same values in the choiceValues parameter. I believe here need to change the datatype of the record field. Boolean only be used for 2 values. Take text for all three options or different integers. 

    a!localVariables(
      local!a,
      a!radioButtonField(
        label: "",
        choiceLabels: { "Yes", "No", "N/A" },
        choiceValues: { "Yes", "No", "N/A" },
        
        value: local!a,
        saveInto: {
          local!a,
          a!save(
            local!a, if(local!a = "NA", {}, local!a)
          )
        },
    )
    )

Children
No Data