Hi,
Here is my code running from change event of the checkbox,
var ch:CheckBox = event.currentTarget as CheckBox;
Alert.show(ch.data.toString())
But unable to get selected checkbox value. It's returning [Object][Object]. Even I tried valueOf() but no success.
What am I missing ?