Dash DataTable - Disable Ability to Select All Rows

I have a table with +7000 rows, when I select the first row checkbox the app freezes.

I don’t need the “select all” checkbox in the first row, so Is there a way of hiding only the checkbox not the row?

great work btw

This isn’t possible but this is a good idea :+1:

If any company would like to sponsor this work and other dash table improvements, please reach out: https://plot.ly/products/consulting-and-oem/

1 Like

I used a workaround for this, hide the select all checkbox using css.

label[for="select-all-checkbox"] {
    display:none;
}
1 Like