Hy,
in a form application I have a field of type int called COLOR
User can select a combination of different colors choosen among RED,BLU,GREEN,ORANGE using a binary checkbox.
As far as I understand SC should save into the DB the binary integer corresponding to the selection.
For example:
RED —> 1 (binary 0001)
BLU —> 2 (binary 0010)
RED and BLU —> 3 (binary 0011)
RED and BLUE and GREEN —> 7 (0111)
and so on
but SC saves always 0 regardless the selection.