- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Zugriff auf Werte anderer Zellen innerhalb der CMS_FUNCTION "Table"
Hallo,
ich bin gerade dabei eine Tablle aus der Eingabekomponente CMS_INPUT_DOMTABLE mit unterschiedlichen CSS elementen sowie speziellem Inhalt zu erzeugen.
Hier ein Beispiel der gewรผnschten Tabelle:
<greenTable>
<thead>
<tr>
<th>Spalte1</th>
<th>Spalte2</th>
</tr>
</thead>
<tb>
<tr>
<th>Zeile1</th>
<td title="Spalte2">Wert1</td>
</tr>
</tb>
</greenTable>
D.h. ich hรคtte gerne in einer Zelle Zugriff auf den Wert der Spaltenรผberschrift bzw. einer anderen Zelle.
Ich verwende die Funktion CMS_FUNCTION "Table":
Nun angenommen ich bin in einer Zelle im Body:
<CELL row="ALL" col="ALL">
Habe ich durch irgend ein Systemobjekt zugriff auf die erste Zeile ?
Weder #cell, #global.context, #tr, #content noch #table bieten mir den Zugriff auf die Zellen in ersten Zeile.
Ich hรคtte erwartet, dass ein Aufruf wie #table.getCell(0, 1) oder #cell.getRow().getTable().getCell(0,0) oder #cell.getColumn.getFirst(),mรถglich ist.
Die Objekte bieten mir aber alle nur boolsche Werte bzw.Integers oder habe ich etwas รผbersehen?
Ist es denn so รผberhaupt mรถglich von einer Zelle zu einer anderen Zelle zu gelangen?
Schรถne Grรผรe
- Labels:
-
Developers
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
So,
nach erneutem Nachdenken bin ich fรผndig geworden.
<CELL row="ALL" col="ALL"><![CDATA[<td mapping="<NameDesDomTableObjekts>.getCell(0,#cell.col).getShortContent(null)"> $CMS_VALUE(#content)$</td>]]></CELL>
liefert mir was ich gesucht habe.
Vllt. hilft es ja noch jemandem in der Zukunft...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hallo Tobias,
ich glaube in dem mit FS mitgelieferten beispielprojekt solltest du fรผndig werden schau her:
<CMS_HEADER>
<CMS_FUNCTION name="Table" resultname="fr_st_table">
<CMS_PARAM name="tableData" value="st_table" />
<CMS_NODE_PARAM name="tableFormat">
<HEADERSPEC><![CDATA[
$-- Define the table (optional caption and footer) --$
<table id="table_$CMS_VALUE(#global.section.id)$"$--
--$$CMS_IF(st_sortable)$$--
--$ class="tablesorter"$--
--$$CMS_END_IF$$--
--$$CMS_IF(#global.preview)$$--
--$ style="width:99%;"$--
--$$CMS_END_IF$$--
--$$CMS_VALUE(editorId(editorName:"st_table"))$$--
--$>
$CMS_IF(!st_tableheader.isEmpty)$$--
--$<caption>$--
--$$CMS_VALUE(st_tableheader.convert2)$$--
--$</caption>$--
--$$CMS_END_IF$
$CMS_IF(!st_underline.isEmpty)$$--
--$<tfoot>
<tr>
<td$--
--$$CMS_IF(#table.cols > 1)$$--
--$ colspan="$CMS_VALUE(#table.cols)$"$--
--$$CMS_END_IF$$--
--$>$--
--$$CMS_VALUE(st_underline)$$--
--$</td>
</tr>
</tfoot>$--
--$$CMS_END_IF$
$CMS_VALUE(#content)$
</table>
]]></HEADERSPEC>
<ROW number="0"><![CDATA[
$-- Define the first row (optional headrow) --$
$CMS_IF(st_sortable || st_topLine)$$--
--$<thead>
<tr>
$CMS_VALUE(#content)$
</tr>
</thead>$--
--$$CMS_ELSE$$--
--$<tr>
$CMS_VALUE(#content)$
</tr>$--
--$$CMS_END_IF$
]]></ROW>
<ROW number="ALL"><![CDATA[$-- Define the standard row --$
<tr>
$CMS_VALUE(#content)$
</tr>
]]></ROW>
<CELL row="0" col="ALL"><![CDATA[
$-- Define all cells in first row (optional headrow) --$
<$--
--$$CMS_IF(st_sortable || st_topLine)$$--
--$th$--
--$$CMS_ELSE$$--
--$td$--
--$$CMS_END_IF$$--
--$$CMS_IF(#cell.rowspan > 1)$$--
--$ rowspan="$CMS_VALUE(#cell.rowspan)$"$--
--$$CMS_END_IF$$--
--$$CMS_IF(#cell.colspan > 1)$$--
--$ colspan="$CMS_VALUE(#cell.colspan)$"$--
--$$CMS_END_IF$$--
--$$CMS_IF(!#cell.align.isEmpty)$$--
--$ align="$CMS_VALUE(#cell.align)$"$--
--$$CMS_END_IF$$--
--$>$--
--$$CMS_IF(!#content.isEmpty)$$--
--$$CMS_VALUE(#content)$$--
--$$CMS_ELSE$$--
--$ $--
--$$CMS_END_IF$$--
--$</$--
--$$CMS_IF(st_sortable || st_topLine)$$--
--$th$--
--$$CMS_ELSE$$--
--$td$--
--$$CMS_END_IF$$--
--$>
]]></CELL>
<CELL row="ODD" col="ALL"><![CDATA[
$-- Define all odd rows cells (optional alternating of rows) --$
<td$--
--$$CMS_IF(st_altRows && !st_sortable)$$--
--$ style="background-color:#DCDCDC;"$--
--$$CMS_END_IF$$--
--$$CMS_IF(#cell.rowspan > 1)$$--
--$ rowspan="$CMS_VALUE(#cell.rowspan)$"$--
--$$CMS_END_IF$$--
--$$CMS_IF(#cell.colspan > 1)$$--
--$ colspan="$CMS_VALUE(#cell.colspan)$"$--
--$$CMS_END_IF$$--
--$$CMS_IF(!#cell.align.isEmpty)$$--
--$ align="$CMS_VALUE(#cell.align)$"$--
--$$CMS_END_IF$$--
--$>$--
--$$CMS_IF(!#content.isEmpty)$$--
--$$CMS_VALUE(#content)$$--
--$$CMS_ELSE$$--
--$ $--
--$$CMS_END_IF$$--
--$</td>
]]></CELL>
<CELL row="ALL" col="ALL"><![CDATA[
$-- Define all cells --$
<$--
--$$CMS_IF((st_sortable || st_topLine) && #cell.firstRow)$$--
--$th$--
--$$CMS_ELSE$$--
--$td$--
--$$CMS_END_IF$$--
--$$CMS_IF(#cell.rowspan > 1)$$--
--$ rowspan="$CMS_VALUE(#cell.rowspan)$"$--
--$$CMS_END_IF$$--
--$$CMS_IF(#cell.colspan > 1)$$--
--$ colspan="$CMS_VALUE(#cell.colspan)$"$--
--$$CMS_END_IF$$--
--$$CMS_IF(!#cell.align.isEmpty)$$--
--$ align="$CMS_VALUE(#cell.align)$"$--
--$$CMS_END_IF$$--
--$>$--
--$$CMS_IF(!#content.isEmpty)$$--
--$$CMS_VALUE(#content)$$--
--$$CMS_ELSE$$--
--$ $--
--$$CMS_END_IF$$--
--$</$--
--$$CMS_IF((st_sortable || st_topLine) && #cell.firstRow)$$--
--$th$--
--$$CMS_ELSE$$--
--$td$--
--$$CMS_END_IF$$--
--$>
]]></CELL>
</CMS_NODE_PARAM>
</CMS_FUNCTION>
</CMS_HEADER>
$-- Table module --$
<div class="clearfix module"$CMS_VALUE(editorId())$>
$CMS_IF(!st_headline.isEmpty)$
<h3$CMS_VALUE(editorId(editorName:"st_headline"))$>
$CMS_VALUE(st_headline.convert2)$
$CMS_RENDER(template:"tooltip",
infoLayer:st_infoLayer,
infoLink:st_infoLink,
infoPicture:st_infoPicture,
infoHeadline:st_infoHeadline)$
</h3>
$CMS_END_IF$
$CMS_VALUE(fr_st_table)$
</div>
$CMS_IF(st_sortable)$
<script>
jQuery.noConflict();
jQuery(document).ready(function()
{
jQuery("#table_$CMS_VALUE(#global.section.id)$").tablesorter( { cssHeader: "sortedTableHeader"$CMS_IF(st_altRows)$, widgets: ['zebra']$CMS_END_IF$} );
}
);
</script>
$CMS_END_IF$
$-- /Table module --$
Viele grรผรe
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hallo Martin,
danke fรผr den Vorschlag.
Allerdings sehe ich nicht wie man in
<CELL row="ALL" col="ALL"><![CDATA[
auf eine bestimmt Zelle aus der ersten Zeile oder einer beliebigen anderen Zeile zugreift.
Mir ist bewusst, dass der Abschnitt <CELL row="0" col="ALL"> zur Ausgabe von Zelleninhalten der ersten Zeile dient.
Allerdings wollte ich ja im obigen Beispiel fรผr <CELL row="1" col="1"> auf den Inhalt der Zelle (r:0,c:1) zugreifen.
Gruร
Tobias
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hallo Tobias,
nichts zu danken . Ich bin ganz ehrlich, ich bin mir nicht sicher ob dies ohne weiteres Mรถglich ist. Vielleicht hat noch wer anders eine gute Idee. Was ist denn deine Anforderung? Oder warum musst du in Zelle "A1" den Inhalt von Zelle "B3" anzeigen?
Viele Grรผรe
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hallo Martin,
im Endeffekt geht es darum, dass jede Zelle spรคter weiร zu welcher Spaltenรผberschrift sie gehรถrt. Das ist erstmal die feste Anforderung, die รผber das CSS definiert wurde um Tabellen entsprechend layouten und Ansichtsabhรคngig umordnen zu kรถnnen.
Da es sich ja im Hintergrund um eine Objekt Tabelle handelt, die mehrere Zellen besitzt, handelt hรคtte ich zumindest gedacht, dass das recht einfach mรถglich sein sollte auf diese zuzugreifen.
Edit: Ich habe gerade nochmal nachgeschaut. es gibt ja in der API das Interface Table, dass genau die Methode .getCell() hรคtte
/help/odfs/access/index.html?de/espirit/firstspirit/access/editor/value/Table.html
Kann ich irgendwie in der CMS_Function darauf zugreifen?
Das Systemobjekt #table scheint ja eine andere Klasse (de.espirit.firstspirit.generate.TableElementRenderer) zu sein, die das Interface nicht implementiert.
Gruร
Tobias
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
So,
nach erneutem Nachdenken bin ich fรผndig geworden.
<CELL row="ALL" col="ALL"><![CDATA[<td mapping="<NameDesDomTableObjekts>.getCell(0,#cell.col).getShortContent(null)"> $CMS_VALUE(#content)$</td>]]></CELL>
liefert mir was ich gesucht habe.
Vllt. hilft es ja noch jemandem in der Zukunft...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Genau das haben wir auch gerade gesucht. Super!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
FYI
Wer Probleme mit der responsive Tabelle und dem Zellenformat hat kann den korrekten Inhalt ausgeben mit:
st_table.getCell(0, #cell.col).getNode()
Zusรคtzlich muss der die Zelle dann anders abgefragt werden
$CMS_VALUE(st_table.getCell(0, #cell.col).getNode().class)$
$CMS_VALUE(st_table.getCell(0, #cell.col).getNode().getChildNodes())$
$CMS_VALUE(st_table.getCell(0, #cell.col).getNode().getFirstChild().getNodeValue())$
$CMS_VALUE(st_table.getCell(0, #cell.col).getNode().item(99))$

