tags:

views:

10

answers:

1

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 ?

A: 

try using

ch.selected;
John Ballinger