Changeset 17942
- Timestamp:
- 08/24/08 20:23:23 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/src/net/project/project/DomainListBean.java
r17908 r17942 489 489 } 490 490 491 public String getValuesOptionListForProperty(Integer propertyId ) {491 public String getValuesOptionListForProperty(Integer propertyId, String selected) { 492 492 IPnProjectSpaceMetaValueService service = ServiceFactory.getInstance().getPnProjectSpaceMetaValueService(); 493 493 List<PnProjectSpaceMetaCombo> metaCombos = service.getValuesOptionListForProperty(propertyId); 494 494 495 return HTMLOptionList.makeHtmlOptionList(metaCombos );495 return HTMLOptionList.makeHtmlOptionList(metaCombos, selected); 496 496 } 497 497
