If I have an editable checkbox defined in a table as follows:
<ctrl:columncheckbox title="Delete"
property="delete"
styleId="delete"
editable="true"
onchange="setFlag();"/>
How would I go about passing the value of the checkbox to a boolean that I've defined in javascript? I.e. what should the "setFlag()" function look like?
Thank you for any help in advance.