這裏是我的模型:如何在Primefaces數據表中表示嵌套數據?
User.java
public class User {
//...
public List<User> getFriends() {
// ...
}
}
我想建的用戶朋友們的表是這樣的:
users.jsf
+----------+------------+ | USER | FRIENDS | +----------+------------+ | | ALICE | | +------------+ | ADAM | BOB | | +------------+ | | PITT | +----------+------------+ | | | ....
由於有很多用戶,這是不可能的轉儲ŧ他用戶表一氣呵成。
數據表部件是在這種情況下,理想的,因爲它有內置的分頁支持。 它也是理想的,因爲它可以對列進行排序...
不幸的是,我無法通過Primefaces示例找到更改用戶列中rowspan的方法。
我怎樣才能建立這個數據表?
有這種類似的問題,其他一些OP:
- Primefaces/JSF Nested Data Table
- How to do a dataTable containing a subtable with Primefaces in the same row? What's doing with mine?
- Primefaces dataTable with rowspan
- ...添加你的嗎?
編輯
這裏是the final solution I came up。
你能舉例說明你的答案嗎? – Stephan