Solved
How can I cast True or false into yes or no?
Hi all,
How can I cast True or false into yes or no?is there any function to convert like this?
Thanks in advance
Hi all,
How can I cast True or false into yes or no?is there any function to convert like this?
Thanks in advance
Did you copy this code from Interface designer? This code is full of errors.
I tried what you said and it works perfectly

a!localvariables(
local!recomend: a!defaultValue(value: null, default: false()),
local!yesNo: { "Yes", "No" },
local!booleanArray: { true(), false() },
a!radioButtonField(
label: "Recomended",
labelPosition: "ABOVE",
choiceLabels: local!yesNo,
choiceValues: local!booleanArray,
value: local!recomend,
saveInto: { local!recomend }
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.