Bootstrap Table Toggle View with Checkbox

634 Views Asked by At

I am using Bootstrap Table. My problem is that when there are checkboxes in my table, table toggle view will be ugly(please see the red rectangle), looks like the second picture below. Can anyone help me how to fix this? Thank you!

Bootstrap Table Bootstrap Table Toggle View

1

There are 1 best solutions below

0
On

You can hide the checkboxes in the toggle view using css.

This is how I solved a similar issue:

.card-view .title input[type="checkbox"] {
    display: none;
}