BF [2874805] - html of help is not valid

https://sourceforge.net/tracker/?func=detail&atid=879332&aid=2874805&group_id=176962
This commit is contained in:
trifonnt 2009-10-09 15:14:43 +00:00
parent 7ee247ec0b
commit b756a460a0
1 changed files with 2 additions and 2 deletions

View File

@ -480,7 +480,7 @@ public class GridWindow implements Serializable
{ {
if (j > 0) if (j > 0)
p.addElement(" | "); p.addElement(" | ");
p.addElement(new a("#Field" + i + j, hdr)); p.addElement(new a("#Field" + i + "-" + j, hdr));
} }
} }
td.addElement(p); td.addElement(p);
@ -500,7 +500,7 @@ public class GridWindow implements Serializable
table fieldHeader = new table(); table fieldHeader = new table();
fieldHeader.setBorder("0").setCellPadding(0).setCellSpacing(0); fieldHeader.setBorder("0").setCellPadding(0).setCellSpacing(0);
fieldHeader.addElement(new tr() fieldHeader.addElement(new tr()
.addElement(new td().addElement(new a().setName("Field" + i + j)) .addElement(new td().addElement(new a().setName("Field" + i + "-" + j))
.addElement(new h3(Msg.getMsg(Env.getCtx(), "Field") + ": " + hdr))) .addElement(new h3(Msg.getMsg(Env.getCtx(), "Field") + ": " + hdr)))
.addElement(new td().addElement(WebDoc.NBSP).addElement(WebDoc.NBSP) .addElement(new td().addElement(WebDoc.NBSP).addElement(WebDoc.NBSP)
.addElement(new strong().addElement(new a("#Fields"+i).addElement("..").addAttribute("title", "Up one level"))))); .addElement(new strong().addElement(new a("#Fields"+i).addElement("..").addAttribute("title", "Up one level")))));