private void populateInstructionsGrid(SplintsInstructionDetailsVoCollection voInstructionsColl) { for(int x=0; x<voInstructionsColl.size(); x++) { SplintsInstructionDetailsVo voSID = voInstructionsColl.get(x); GenForm.ctnDetailsContainer.grdInstructionsRow row = form.ctnDetails().grdInstructions().getRows().newRow(); row.setColInstructionDetails(voSID.getInstructionLeaflet()); row.setColDate(voSID.getDateGiven()); row.setValue(voSID); } }