Hello,
I use row_selectable=“multi” for dash_table.DataTable.
Is it possible to disable some checkboxes from Python Dash using ‘style_data_conditional’ attribute in dash_table.DataTable?
I need to protect some checkboxes from checking/unchecking conditional on a value in some column.
Usually I add {‘pointer-events’: ‘none’} if I need to protect cells from interaction, I need something similar for checkboxes.
Thanks in advance