Sorting is not working in datatable in PrimeFaces?

后端 未结 7 2466
感情败类
感情败类 2020-12-15 07:13

Sorting is not working in datatable in PrimeFaces. Please suggest.

See below my .xhtml file



  

        
7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-15 07:18

    If you populate your table in the getter sorting wont work (as described above). You should put in your getter like:

    public List getTableData() {
        if (tableDataList == null)
            tableDataList = dao.getTableData();
        return tableDataList;
    }
    

    You can then reset(refresh) your "cash" by punting tableDataList = null; if you wont your datatabele refreshed.

提交回复
热议问题