private void createGRTypeSelectItemList() { SelectItem selectItem; grTypeSelectItemList.clear(); grTypeSelectItemList.add(new SelectItem("-1", "àÅ×Í¡»ÃÐàÀ·¡ÒÃÃѺÇÑÊ´Ø")); for (GRType grType : GRType.values()) { selectItem = new SelectItem(); selectItem.setValue(grType.getID()); selectItem.setLabel(grType.getValue()); grTypeSelectItemList.add(selectItem); } }
public void grTypeComboBoxSelected() { editGR.setGrType(GRType.find(selectedGRType)); }