use of de.alpharogroup.bundle.app.combobox.renderer.CountriesComboBoxRenderer in project bundle-app-ui by astrapi69.
the class NewCustomLocalePanel method newCmbCountry.
protected javax.swing.JComboBox<Countries> newCmbCountry(final Model<ApplicationDashboardBean> model) {
CountriesComboBoxModel cmbModel = CountriesComboBoxModel.get();
final javax.swing.JComboBox<Countries> comboBox = new javax.swing.JComboBox<>(cmbModel);
comboBox.addItemListener(e -> onChangeCountry(e));
comboBox.setRenderer(new CountriesComboBoxRenderer());
return comboBox;
}
Aggregations