Jason Wood:
A in a table2… gets cut off by the bounds of the table. Is there a known fix?
Linxue Ren:
Hi, can be customized in styling. To make it visible, you can reference to this css styling.
/* Ensure the dropdown container can overflow the table row */
tbody {
position: relative;
overflow: visible !important;
}
table {
overflow: visible !important;
}
.table-responsive {
overflow: visible !important;
}
.multiselect__content-wrapper {
position: absolute;
z-index: 1000 !important;
max-height: 300px;
overflow-y: auto !important;
}
.multiselect.open .multiselect__content-wrapper {
top: 100%;
left: 0;
right: 0;
}
Jason Wood:
works great!