Hallo Zusammen
Im Tabellen-Plugin des Design Horizon hat es einen Fehler. Die Tabelle wird mit Bildern zu gross! Dieses Problem kann wie folgt korrigiert werden:
paragraph_table.ccml (bisher):
|
Source code
|
1
2
3
4
5
|
<cc:if cond="&sidebar.count gt 0">
<cc:picture uid="&mycol.picture" obj="tablepic" width="660 / ¶graph.table.colcount - 9" suffix="'cols'+¶graph.table.colcount">
<cc:else>
<cc:picture uid="&mycol.picture" obj="tablepic" width="880 / ¶graph.table.colcount - 9" suffix="'cols'+¶graph.table.colcount">
</cc:if>
|
paragraph_table.ccml (korrigiert):
|
Source code
|
1
2
3
4
5
|
<cc:if cond="&sidebar.count gt 0">
<cc:picture uid="&mycol.picture" obj="tablepic" width="530 / ¶graph.table.colcount - 9" suffix="'cols'+¶graph.table.colcount">
<cc:else>
<cc:picture uid="&mycol.picture" obj="tablepic" width="730 / ¶graph.table.colcount - 9" suffix="'cols'+¶graph.table.colcount">
</cc:if>
|
Grüsse aus der Schweiz!
Oliver