index ++;
}
FormEntrySession session = new FormEntrySession(e.getPatient(), e, Mode.VIEW, form, null); // session doesn't get HttpSession
session.getHtmlToDisplay();
FormSubmissionController fsa = session.getSubmissionController();
List<FormSubmissionControllerAction> actions = fsa.getActions();
for (FormSubmissionControllerAction fsca : actions){
if (fsca instanceof ObsSubmissionElement){
ObsSubmissionElement ose = (ObsSubmissionElement) fsca;
sb = appendObsToRow(ose, sb, extraCols, locale);
} else {