From: Janis Streib Date: Fri, 27 Jun 2014 00:26:36 +0000 (+0200) Subject: Correct colspan handling X-Git-Url: https://code.wpia.club/?p=gigi.git;a=commitdiff_plain;h=472e110e96de8f2b71766f793d1f498eb87c2cdf;ds=sidebyside Correct colspan handling --- diff --git a/src/org/cacert/gigi/output/DataTable.java b/src/org/cacert/gigi/output/DataTable.java index 3f131a22..771a0c2a 100644 --- a/src/org/cacert/gigi/output/DataTable.java +++ b/src/org/cacert/gigi/output/DataTable.java @@ -24,10 +24,12 @@ public class DataTable implements Outputable { } } out.println(""); + int cellsRendered = 0; for (int i = 0; i < mesCells / columnCount; i++) { out.println(""); for (int j = 0; j < columnCount;) { - Cell current = cells.get((i * columnCount) + j); + Cell current = cells.get(cellsRendered); + cellsRendered++; j += current.getColSpan(); out.println("
"); out.print(current.shouldTranslate() ? l.getTranslation(current @@ -53,6 +55,9 @@ public class DataTable implements Outputable { this.text = text; this.translate = translate; this.htmlAttribs = htmlAttribs; + if (colSpan > 1) { + this.htmlAttribs += " colspan=\"" + colSpan + "\""; + } this.colSpan = colSpan; }