Power Table column set to boolean and editable

I am using a power table and have set a column to boolean so that it uses checkbox. I also have set that column as editable, under the table customizer settings. The checkbox shows properly but you can’t check or uncheck the box even though i have it set to editable. Please help!

What version are you using?

I just tested this on 7.8.2 and it does the same thing.
A workaround would be to do this in onMousePress

	if colIndex==3:
		curData = not value
		newData = system.dataset.setValue(self.data, rowIndex, colIndex, curData)
	 	self.data = newData

Where the colIndex points at the bool column you want to use.

Do you have the onCellEdited extension function set?

self.data = system.dataset.setValue(self.data, rowIndex, colIndex, newValue)