Programatic CellTable sort in GWT not working

2019-06-21 22:15发布

I'm using the ListDataProvider example here as a guide. The columns are sorting fine as expectd based on the provided comparators. I'm trying to programatically apply a sort as alluded to on this line from the example:

// We know that the data is sorted alphabetically by default.
table.getColumnSortList().push(nameColumn);

What this does, is it makes the cell column appear to be sorted with the carrot sort indicator. However, the underlying data isn't sorted. Is there a way to get the table to actually apply the sort progarmatically. I suppose I could use this in conjunction with actually sorting the data via Collections.sort(), but I'd like to avoid that and do it in one place.

2条回答
孤傲高冷的网名
2楼-- · 2019-06-21 22:32

you have to call setData on grid again.....

查看更多
萌系小妹纸
3楼-- · 2019-06-21 22:34

You can apply sorting on a column programatically with little exta code. The following code snippet does that -

When ever u set data to the cellTable you have to initialize the ListHandler as below code does -

cellTable.addColumnSortHandler( createColumnSortHandler() );

private ListHandler<T> createColumnSortHandler()
{
     final ListHandler<T> listHandler = new ListHandler<T>(listDataProvider.getList());
     listHandler.setComparator( sortColumn, comparator );
     return listHandler;
}

And when u want to fire the SortEvent execute the following code snippet -

ColumnSortInfo columnSortInfo = new ColumnSortInfo( sortColumn, sortDirection );
cellTable.getColumnSortList().push( columnSortInfo );
ColumnSortEvent.fire( cellTable, cellTable.getColumnSortList());
查看更多
登录 后发表回答