I am working in editable grid (Appian 7.9) and observed that if I try to select

I am working in editable grid (Appian 7.9) and observed that if I try to select a single item of the Grid the local!selected will continue to grow without holding the earlier selected values on the form. The same thing is happening when I select grid header check box .

OriginalPostID-151610

OriginalPostID-151610

  Discussion posts and replies are publicly visible

Parents
  • forget to add the checkboxField value. the checkboxfield should be like this
    a!checkboxField(
    label:"Select" & ri!index,
    choiceLabels :{""},
    choiceValues :{if(rule!APN_isBlank(ri!index),{},ri!index)},
                                  value:if(ri!selectedIndex=tointeger(ri!index),ri!selectedIndex, {}),
    saveInto :{
                                  ri!selectedIndex
    }
    )
Reply
  • forget to add the checkboxField value. the checkboxfield should be like this
    a!checkboxField(
    label:"Select" & ri!index,
    choiceLabels :{""},
    choiceValues :{if(rule!APN_isBlank(ri!index),{},ri!index)},
                                  value:if(ri!selectedIndex=tointeger(ri!index),ri!selectedIndex, {}),
    saveInto :{
                                  ri!selectedIndex
    }
    )
Children
No Data