vaadin / starters

Issue repository for all the starter projects in https://vaadin.com/start
3 stars 0 forks source link

Something more than a simple flat class #123

Open stmurphy65 opened 1 year ago

stmurphy65 commented 1 year ago

LOVE the start.vaadin.com/app tool. It really gives me some good getting-started help.

The only issue I have is that it doesn't show me how to handle a more complex class for a table (Master-Detail template). For instance, let's say I have the following class:

class Show() {
  private LocalDateTime eventDateTime;
  private Venue venue;
  private List<Person> performers
  private Person stageManager;
}

It'd be nice to have a Complex-Master-Detail template to show how this might be managed. Maybe this isn't something handled in just a table, or maybe it has a button in a cell to pop open a dialog to collect the extra class data (Person, Venue, etc.) Just a thought.