Question
RE: Checkbox
Hi Everyone,
I am trying to achieve multi selection checkbox but its not working as expected
a!checkboxField(
label: "",
choiceLabels: cons!CR_TXT_CHOICE_LABELS_YES_NO[1],
choiceValues: cons!CR_APP_INT_CHOICE_VALUES[1],
value: if(
contains(
cons!CR_APP_INT_CHOICE_VALUES[1],
tointeger(local!selectionFlag_int)
),
tointeger(local!selectionFlag_int),
null()
),
saveInto: local!selectionFlag_int,
align: "LEFT"
),Currently, If I select one checkbox it is selecting all checkbox ,But I want to select multi checkbox ,How would I achieve this, can anyone correct this code .
Thanks in Advance.
