Vaadin 14
grid.addColumn(Loan::getLoanNumber).setHeader(“LoanNumber”).setKey(“LoanNumber”);
Despite setting the key to exactly what the getter method is, the spreadsheet is completely blank. It has the right number of blank rows though.
Vaadin 14
grid.addColumn(Loan::getLoanNumber).setHeader(“LoanNumber”).setKey(“LoanNumber”);
Despite setting the key to exactly what the getter method is, the spreadsheet is completely blank. It has the right number of blank rows though.
key should be "loanNumber", try that way