Trouble with CellList empty widget and AsyncDataProvider
问题 I have a CellList that I'm populating with an AsyncDataProvider : @UiField(provided = true) CellList<PlayerDataEntity> friendCellList; @Inject FriendListViewImpl(FriendListController controller) { friendCellList = new CellList<PlayerDataEntity>(new PlayerCell()); initWidget(uiBinder.createAndBindUi(this)); // if we don't set the row data to empty before trying to get the real data, // the empty list widget will never appear. But if we do set this, // then the real data won't show up.