Download als PDF

<detailView>

 

Element Beschreibung Namensraum Anzahl
columns Elternelement zur Definition der anzeigbaren Spalten http://onion.net/modulesystem 1
childType Konfigurationsabschnitt für ein Kindelement http://onion.net/modulesystem 1..*

 

Attribut Beschreibung Namensraum Optional
schemaLocations Leerzeichengetrennte Liste der SchemaLocations, auf welche die Listenansicht angewandt werden soll   Nein
applyToDerivations Boolscher Wert zur Vererbung der Listansicht auf die Ableitungen der definierten Schemata   Ja
order Leerzeichengetrennte List der Wertepaare Spalten Id#Sortierungsrichtung. Beispielsweise: "title#ascending creator#descending"   Ja
<detailView schemaLocations="http://onion.net/example/container.xsd" applyToDerivations="false" order="title#descending">
<columns>
<column i18n:key="title" label="Titel" id="title" width="50px" align="left" visibility="fixed" minWidth="auto" type="text" />
<column i18n:key="creator" label="Ersteller" id="creator" width="auto" visibility="visible" minWidth="auto" align="left" type="text" />
</columns>
<childType schemaLocations="http://onion.net/example/item.xsd" structureInvisible="false" applyToDerivations="false">
<column ref="title">
<xsl:value-of select="onion:meta/@onion:name" />
</column>
<column ref="creator">
<xsl:value-of select="onion:meta/@onion:creator" />
</column>
</childType>
</detailView>