private void initializeGridAppointmentOutcomeReasonWithLookups() { form.ctnDetails().grdAppointmentOutcomeReasons().getRows().clear(); AppointmentOutcomeReasonCollection lookupCollection = (AppointmentOutcomeReasonCollection) domain.getLookupService().getLookupCollection(AppointmentOutcomeReason.TYPE_ID, AppointmentOutcomeReasonCollection.class, AppointmentOutcomeReason.class, false, false); for(int x = 0; x < lookupCollection.size(); x++) { addLookupRowToAppOutcomeReasonGrid(lookupCollection.get(x)); } }