");
+
+ for (int j = 0; j < combinedFeldtypen.length; j++) {
+ if (combinedFeldtypen[j].equals("dateinfo")
+ || combinedFeldtypen[j].equals("addselect")) {
+ out.println("");
+ } else {
+ out.println(" | ");
+ }
+
+ if (combinedFeldtypen[j].equals("textfield")) {
+
+ out.println(row != null && row
+ .get(zielattributArray[j]) != null ? DBtoHTML(row
+ .get(zielattributArray[j]).toString())
+ : (alreadyOne ? "" : "-"));
+
+ } else if (combinedFeldtypen[j].equals("textarea")) {
+
+ out.println((row != null && row
+ .get(zielattributArray[j]) != null ? DBtoHTML(row
+ .get(zielattributArray[j]).toString())
+ : (alreadyOne ? "" : "-")));
+
+ } else if (combinedFeldtypen[j].equals("addselect")) {
+ int selected = (row != null && row.get(zielattributArray[j]) != null ? Integer.parseInt(row
+ .get(zielattributArray[j]).toString())
+ : -1);
+ out.println("");
+ out.println(""
+ + txt_newentry + "");
+
+ } else if (combinedFeldtypen[j].equals("addselectandtext")) {
+
+ out.println("");
+ out.println(""
+ + txt_newentry + "");
+
+ } else if (combinedFeldtypen[j].equals("select")) {
+
+ List |