Currently working on integrating the angular-2-dropdown-multiselect component:
https://www.npmjs.com/package/angular-2-dropdown-multiselect
The component functions correctly, but I am looking to adjust its width to fit the container...
I believe simply adding "width:100%" somewhere should suffice, though I'm unsure of the exact location to make this change.
Additional details to consider:
This component is being utilized within a Bootstrap application.
I have inserted the component into a table setup like so:
<table class="table">
<tr>
<td>Search</td>
<td><ss-multiselect-dropdown [options]="myOptions" [texts]="myTexts" [settings]="mySettings" [(ngModel)]="optionsModel" [ngModelOptions]="{standalone: true}"></ss-multiselect-dropdown></td>
</tr>
</table>
Another thing to consider:
It may be worth exploring transitioning from using a bootstrap table to a bootstrap form to see if it resolves the issue with the listbox fitting into the container by default...
Thank you for your help!