In a dash_table.DataTable, with row_selectable="multi", the checkboxes column is cut off in the display

Hi @maaxnaax

Are you using bootstrap? I was having the same issue and it was fixed by adding this to the css file in the assets folder:

.dash-table-container .row {
display: block;
margin: 0;
}

And thanks to @sislvacl for providing that solution: DataTable Incorrectly Displayed at Left and Right Edge and Distort after update columns

1 Like