Real Conditional Checkbox display

Hi Netanel, which version of Skuid are you running? Can you replace listener.handleChange in the first snippet above with this, and then let me know what shows up in the JavaScript Console for checked/unchecked states?

listener.handleChange = function() { var newVal = field.model.getFieldValue(field.row,field.id,true); console.log('New Value: ' + newVal); doIt(newVal); };