tag).
145146147148149150151152153154155156157158159160161162
{ List<HtmlInput<?>> inputs = new ArrayList<HtmlInput<?>>(); if (this.selectedIds == null || this.selectedIds.size() == 0) { Paragraph t = new Paragraph("No records were selected for updating."); t.setDescription("Error."); inputs.add(t); return inputs; } Paragraph t = new Paragraph("Selected ids:" + this.selectedIds.toString()); t.setDescription("The IDs you have selected for updating."); inputs.add(t); // put ids of selected rows in hidden field for (Object id : this.selectedIds) {