0
我正在尋找一種方法來使richfaces提供的dataGrid響應。 含義,網格根據設備屏幕的大小進行縮放。如何讓rich:dataGrid響應?
我看了Richfaces Bootstrap:http://planet.jboss.org/post/richfaces_bootstrap 但他們建議不要在任何生產代碼中使用它,因爲它仍在開發中。標籤和屬性可隨時更改。
我正在尋找一種方法來使richfaces提供的dataGrid響應。 含義,網格根據設備屏幕的大小進行縮放。如何讓rich:dataGrid響應?
我看了Richfaces Bootstrap:http://planet.jboss.org/post/richfaces_bootstrap 但他們建議不要在任何生產代碼中使用它,因爲它仍在開發中。標籤和屬性可隨時更改。
您需要覆蓋默認的CSS。 Here是組成dataGrid的類的列表。
的responsivness被查詢像這樣實現的:
@media(min-width:768px) and (max-width:979px) {
/* styles for the given width range */
}
你不應該使用的引導組件,但你可以使用CSS。然而,dataGrid是一個表格,並且這些表格不能很好地擴展。
是否有我不應該使用引導組件的原因? – Fabii
它一段時間以來一直沒有被觸及,當我們前往RF 5時,有些東西可能無法正常工作。 – Makhiel