2014-10-06 57 views

回答

1

我設法做到了,但以一種非常冒險的方式,所以我會接受,直到有人發現別的東西。

table_with_filterp:dataTablestyleClass,我添加了下面的CSS:

首先,我創建的數據,並帶有邊框頭之間的空間:

.table_with_filter.ui-datatable-data { 
    border-top: 25px solid #DDDDDD; 
} 

然後,我移動向下輸入一個自定義的底部底部,並將頭部的溢出設置爲可見,以便我可以在其外部看到過濾器。

.table_with_filter.ui-column-filter.ui-inputfield { 
    position: relative; 
    bottom: -26px; 
} 
.table_with_filter th.ui-state-default { 
    overflow: visible; 
} 

也許對樣式進行一些微小的調整來完美地適應一切,就是這樣。

結果:

enter image description here

+0

如何給過濾器的位置都列腳註什麼想法? – 2015-11-06 18:59:57

相關問題