我正在尝试在 PrimeFaces 的 DataTable 中使用另一种分页方式。
我想要做的是“垂直”显示新页面,因此必须将新加载的数据附加到上一个 DataTable 的末尾。
类似于 Facebook 的主页流,其中单击“加载旧帖子”将使它们出现在最新帖子下。
这可能吗??
我已经尝试了几乎所有使用分页器的方法,但似乎没有办法构建“垂直”数据表。
如果不是 PrimeFaces,是否有任何组件可以满足我的需求?
加载应该是惰性的,因此,每次用户决定加载新数据时,都必须执行查询。没有清单什么的!
谢谢 :)
编辑:
JSF 页面
<pou:dataTable scrollable="true" liveScroll="true" scrollHeight="400" scrollRows="100" value="#{postListBean_1.posts}" var="post">
<pou:column>
#{post.testo}
<hr/>
</pou:column>
</pou:dataTable>
豆
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ManagedBeans;
import ejb.PostManagerLocal;
import entity.Post;
import java.io.Serializable;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.ejb.EJB;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
/**
* La classe si occupa di gestire lo scambio di messaggi tra utenti. Da
* implementare ancora i metodi per l'invio e per la segnalazione dell'avvenuta
* lettura.
*
* @author stefano
*/
@ManagedBean
@RequestScoped
public class PostListBean_1 implements Serializable {
@EJB
private PostManagerLocal postManager;
private List<Post> posts;
private int limit = 0;
/**
* Get the value of posts
*
* @return the value of posts
*/
public List<Post> getPosts() {
limit+=4;
makePosts();
return posts;
}
/**
* Set the value of posts
*
* @param posts new value of posts
*/
public void setPosts(List<Post> posts) {
this.posts = posts;
}
/**
* Creates a new instance of PostListBean
*/
public PostListBean_1() {
}
/**
* Inizializza la lista dei posts, prendendoli in ordine inverso, in modo da
* avere prima i più recenti
*/
@PostConstruct
public void makePosts() {
int[] range = {0, limit};
posts = postManager.findRangeReverse(range);
}
}