Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Minor typo

...

Code Block
titleSelectWithListDemo.java (a page class)
@Property
private SelectModel ColorSelectModelcolorSelectModel;
@Inject
SelectModelFactory selectModelFactory;
...
void setupRender() {
    // invoke my service to find all colors, e.g. in the database
    List<Color> colors = colorService.findAll();

    // create a SelectModel from my list of colors
    ColorSelectModelcolorSelectModel = selectModelFactory.create(colors, "name");
}

...