private void populateScreenFromData() { form.grdNotes().getRows().clear(); TriageNotesVoCollection notes = domain.listNotes(form.getLocalContext().getPatient(), form.getLocalContext().getEpisodeOfCare(), form.getLocalContext().getCareContext()); for(TriageNotesVo note : notes) { if(note == null) continue; addNoteRow(note); } }