我在 html 表格的 td 元素中使用了 2 个多选下拉菜单。下拉列表的数量取决于数组。
<table class="table table-condensed">
<thead>
<tr>
<th>Group Name</th>
<th>Group Languages</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let lngGrp of languageGroups let i = index">
<td>{{ lngGrp.id.groupLanguageName }}</td>
<td>
<p-multiSelect [options]="languageOptions" [(ngModel)]="lngGrp.selectedGroupLanguages" [ngModelOptions]="{standalone: true}" [disabled]="viewOnly"></p-multiSelect>
</td>
</tr>
</tbody>
</table>
问题是多选下拉菜单没有显示并在下一个 td 元素下滑动。我试过使用 PrimeNG 和 Softsimon 的多选下拉菜单,同样的问题仍然存在。关于如何在下一个 td 元素上显示它的任何想法?