private void loadChecklistGridFromLookup() { form.grdChecklist().getRows().clear(); EnvironmentalChecklistCollection coll = LookupHelper.getEnvironmentalChecklist(domain.getLookupService()); for(int i=0;i<coll.size();i++) { GenForm.grdChecklistRow row = form.grdChecklist().getRows().newRow(); row.setcolChecklistItem(coll.get(i)); row.setValue(new EnvironmentalChecklistDetailVo()); } }