Table checkbox ,after edited, cell status still in selected?

Table column1 ,set checkbox .

After I edited this cell, the cell status is still in selected.

Then I click the Top Button , btn script like this:

	dataset = system.device.listDevices()
	table = self.parent.parent.getChild("Table")
	table.props.data = dataset
	
	table.props.selection.selectedRow = None
	table.props.selection.selectedColumn = None
	table.props.selection.data =[]

Always in selected status.....

I dealt with this recently, and what ended up working was nullifying the selected row and column while leaving the selection data alone. Try removing the final line of your code:

dataset = system.device.listDevices()
table = self.parent.parent.getChild("Table")
table.props.data = dataset
	
table.props.selection.selectedRow = None
table.props.selection.selectedColumn = None
# table.props.selection.data =[]