GWT排序一个单元格表,可能只是我没有看到的东西

时间:2011-07-11 15:02:23

标签: gwt sorting gwt-2.2-celltable

在过去的几个小时里,我一直在努力尝试对GWT CellTable进行排序。 这真是一个愚蠢的问题,因为它已在这里完成 http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable

但我不明白我在例子中缺少的是什么......

这是我用来创建列的代码:

    Column<RemoteCommand, String> nbProducts = new Column<RemoteCommand, String>(
                new TextCell()) {
              @Override
              public String getValue(RemoteCommand object) {
                return object.getNumberProduct();
              }
            };
            nbProducts.setSortable(true);
            sortHandler.setComparator(nbProducts, new Comparator<RemoteCommand>() {
              public int compare(RemoteCommand o1, RemoteCommand o2) {
cellTable.redraw();
                  return o1.getCommandSize().compareTo(o2.getCommandSize());
                   // System.out.println(Integer.parseInt(o1.getCommandSize() ) -  Integer.parseInt(o2.getCommandSize()));
                    //  return  Integer.parseInt(o1.getCommandSize() ) -  Integer.parseInt(o2.getCommandSize());
              }
            });

以下是表格本身的声明:

// Add a selection model so we can select cells.
final SelectionModel<RemoteCommand> selectionModel = new MultiSelectionModel<RemoteCommand>(
            RemoteCommand.KEY_PROVIDER);
cellTable.setSelectionModel(selectionModel,
DefaultSelectionEventManager.<RemoteCommand> createCheckboxManager());


// Attach a column sort handler to the ListDataProvider to sort the list.
    ListHandler<RemoteCommand> sortHandler = new ListHandler<RemoteCommand>(values);
cellTable.addColumnSortHandler(sortHandler);

// Initialize the columns.
initTableColumns(selectionModel, sortHandler);

cellTable.setRowData(values);

帮助需要:)

1 个答案:

答案 0 :(得分:2)

我猜你已经找到了解决方案,但只是为了保留它:

首先,使用一些已知的List创建dataProvider。 比使用相同的List feed sortHandler; 并使用列表更新数据。 Celltable应设置为dataProvider的dataDisplay:

List myDataList = new ArrayList();
ListDataProvider dataProvider = new ListDataProvider(KEY_PROVIDER);
dataProvider.setList(myDataList);
ListHandler sortHandler = new ListHandler(dataProvider.getList);
//tie provider and table
dataProvider.addDataDisplay(cellTable);

//when you need to update dataprovider
//first do some myDataList cleanup to remove old values
myListData.addAll(values);
//update data displays
dataProvider.refresh();

考虑一下,你必须始终使用同一个List对象。