private void prepopuateGrdValuables() { form.ctnDetails().grdValuables().getRows().clear(); ValuableCollection coll = LookupHelper.getValuable(domain.getLookupService()); if (coll != null) { for (int i = 0; i < coll.size(); i++) { grdValuablesRow row = form.ctnDetails().grdValuables().getRows().newRow(); row.setcolValuable(coll.get(i)); } } }