I would like to populate a Vaadin Grid that gets data from different SQL tables and represent them all in a single grid in a matrix-like structure.
For example, the second row gets data from the Monitoring table, the third row gets data from the deployment table, and so on. Similarly, the Consultant column gets data from the consultant table, and Region 1,2 and 3 columns get data from different region tables.
Is there an efficient Vaadin-way to achieve this? Thank you.
So far I am able to populate my grid with a single DTO source.
grid.addColumn(RegionData::getRegion).setHeader("Region 1");
grid.addColumn(RegionData::getRegion).setHeader("Region 2");
grid.addColumn(RegionData::getRegion).setHeader("Region 3");
How can I add Areas and Consultant columns in the same grid?