private void populateAllergiesGrid(PatientAllergyForTriageVoCollection listAllergies) { form.grdAllergies().getRows().clear(); if(listAllergies == null) return; for(PatientAllergyForTriageVo allergy : listAllergies) { addAllergyRow(allergy); } form.grdAllergies().setValue(form.getLocalContext().getselectedAllergy());//WDEV-16176 }