onEditCellCommit trigger true and false

I am using the onEditCellCommit in table component to trigger a message handler. I knew that I can useif event.column =='delete' : in my script , but if my column in delete is a boolean, how can I call the true and false (or the content of the boolean column) in my script?
this is a column in my table component:
image

it should be as simple as using.

myBool = event.value

I’m not using v8 yet, so I can’t verify this. The manual entry is very helpful though

1 Like

Pssst! bool is a built-in function name. If you assign to that name, it hides the function and can break stuff that depends on it.

2 Likes