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
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
If any company would like to sponsor this work and other dash table improvements, please reach out: https://plot.ly/products/consulting-and-oem/
I used a workaround for this, hide the select all
checkbox using css.
label[for="select-all-checkbox"] {
display:none;
}