java-如何通过过滤在Vaadin 8网格页脚中计算总数
作者:互联网
我知道我必须使用grid.getDataProvider()来获取ListDataProvider(假设我已将列表发送到grid.setItems()).用其他方法计算页脚总数:
Collection myItems = ((ListDataProvider)grid.getDataProvider()).getItems();
for(MyItem myItem : myItems)
total += myItem.getValue();
footer.getCell(footerCell).setText(format(total));
但是,如果添加页脚会失败,因为它会计算网格中的所有项目.因此,例如,如果我添加:
((ListDataProvider)grid.getDataProvider()).addFilter(myFilter);
顶部的代码失败,因为页脚不是经过筛选的总计,而是整个网格的总计.
grid.getDataCommunicator().fetchItemsWithRange(...);
但是,这是一种受保护的方法.假设我创建了自己的子类,我什至不了解该方法的工作原理.
但是即使那样,这似乎也太复杂了,应该变得很简单,特别是如果能够在网格中添加过滤功能的话.
因此,我的大问题是,如果对网格进行过滤,如何计算Vaadin 8网格中的页脚总数?
解决方法:
要重新计算总数,可以使用DataProviderListener,该值在过滤器更改时触发.在其实现中,您可以将DataProvider中的项目与Query中的项目合并为fetch,因为获取方法还考虑了您定义的过滤器.
下面的示例主要基于Vaadin grid sampler,其思想是显示月度报价及其总额的列表.该过滤器将使您可以查看某个月开始的数据(这很愚蠢,但是可以帮助您开始使用):
import com.vaadin.data.provider.ListDataProvider;
import com.vaadin.data.provider.Query;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.Grid;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.components.grid.FooterRow;
import com.vaadin.ui.components.grid.HeaderRow;
import com.vaadin.ui.themes.ValoTheme;
import java.util.List;
import java.util.Random;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
public class FilteredGrid extends VerticalLayout {
public FilteredGrid() {
// list data provider with some random data
Random random = new Random();
List<Quote> quotes = IntStream.range(1, 11).mapToObj(month -> new Quote(month, random.nextInt(10))).collect(Collectors.toList());
ListDataProvider<Quote> provider = new ListDataProvider<>(quotes);
// month number filter combo
ComboBox<Integer> monthFilterCombo = new ComboBox<>("Starting with", IntStream.range(1, 10).boxed().collect(Collectors.toList()));
monthFilterCombo.setEmptySelectionCaption("All");
monthFilterCombo.addStyleName(ValoTheme.COMBOBOX_SMALL);
monthFilterCombo.addValueChangeListener(event -> {
if (event.getValue() == null) {
provider.clearFilters();
} else {
provider.setFilter(quote -> quote.getMonth() > event.getValue());
}
});
// grid setup
Grid<Quote> grid = new Grid<>(Quote.class);
grid.setDataProvider(provider);
// header and footer
HeaderRow header = grid.appendHeaderRow();
header.getCell("month").setComponent(monthFilterCombo);
FooterRow footer = grid.prependFooterRow();
footer.getCell("month").setHtml("<b>Total:</b>");
provider.addDataProviderListener(event -> footer.getCell("value").setHtml(calculateTotal(provider)));
// add grid to UI
setSizeFull();
grid.setSizeFull();
addComponent(grid);
// trigger initial calculation
provider.refreshAll();
}
// calculate the total of the filtered data
private String calculateTotal(ListDataProvider<Quote> provider) {
return "<b>" + String.valueOf(provider.fetch(new Query<>()).mapToInt(Quote::getValue).sum()) + "</b>";
}
// basic bean for easy binding
public class Quote {
private int month;
private int value;
public Quote(int month, int value) {
this.month = month;
this.value = value;
}
public int getMonth() {
return month;
}
public void setMonth(int month) {
this.month = month;
}
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
}
}
结果:
标签:vaadin-grid,vaadin,vaadin8,java 来源: https://codeday.me/bug/20191025/1930051.html