MATLAB: How to access the logical column data to uncheck the logical cells in uitable

matlab guiuitable

I have created a uitable with logical column with some other numeric columns. How do i uncheck the previously checked logical cell when another logical cell is checked without clicking the cell? I want to do it programmatically.I am unable to figure it out. Please help me out.

Best Answer

The CellEditCallback() will be executed when the user clicks to change a value. Your callback can arrange to zero out other values as appropriate.