Forum Discussion
YMinaev
Staff
16 years agoHi,
Use code like this:
Use code like this:
...
var checkbox = // Obtain your check box (the check box, not the cell in which it is located)
if(checkbox.state)
{
//checked
}
else
{
//unchecked
}
...