Hi Alejandro,
first of all: great addon!
There is one feature I’m missing (or maybe just don’t see): How can I construct columns with a ValueProvider-like mechanism like eg. in Grid?
Imagine the following:
report.getReportBuilder().addColumn(new ProviderColumn("turnover", this::getTurnover));
(...)
private Double getTurnover(Address customer){
return 42d;
}
Currently I don’t see much possibilities to construct columns except the PropertyColumn.
What do you think?