我在表中有一个ng-bootstrap datepicker。该表是网站上清晰布局所必需的。
如果我单击按钮,则弹出窗口仍会像表格高度一样显示。我做了很多尝试,并且知道我希望有人对我有解决方案。
<div id="tbl1" class="table-responsive" style="">
<table class="table table-sm" style="font-size: small">
<tbody>
<tr style="border: hidden">
<td style="width: 25%">Contract begin</td>
<td style="width: 25%">Contract end</td>
</tr>
<tr style="border: hidden;">
<td>
<form class="form-inline">
<div class="form-group">
<div class="input-group">
<input class="form-control form-control-sm" placeholder="yyyy-mm-dd" name="dp" [(ngModel)]="model" ngbDatepicker #d="ngbDatepicker">
<div class="input-group-append">
<button class="btn btn-sm btn-outline-secondary" (click)="d.toggle()" type="button">
<img src="img/calendar-icon.svg" style="width: 1.2rem; height: 1rem; cursor: pointer;"/>
</button>
</div>
</div>
</div>
</form>
</td>
<td>2001-01-01</td>
</tr>
</tbody>
</table>
答案 0 :(得分:0)
问题在于.table-responsive
使用overflow-x: auto
使得日期选择器仅在div内显示。
解决方案是将overflow: visible
添加到#tbl1
,以便显示超出限制的日期选择器。
Here is使用此方法更新了插件。
希望有帮助!