0

我使用角度引導程序https://angular-ui.github.io/bootstrap/和類別table-responsive。問題是,在日期選擇器會顯示在表內,如下面的圖片:帶響應表的角度日期選取器引導程序

enter image description here

我可以修復它:

.table-responsive { 
    overflow: visible; 
} 

,這將很好地工作:

enter image description here

現在,如果我添加上面的修復程序,我的移動顯示將最終像這樣:

enter image description here

它不會滾動,它會溢出我的屏幕。我該如何解決?

請幫助我,並提前致謝。

+1

您可以使用'uib-datepicker-popup'並添加'datepicker-append-to-body =「true」'屬性,將其附加到主體 –

+1

謝謝。它解決了我的問題。 – sg552

回答

2

使用datepicker-append-to-body="true"與彈出版本將它鏈接到正文。它會很好地出現在你的桌子上面。

這是plunker

+0

謝謝。它確實有效。 – sg552

相關問題