Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Zum Ausblenden einiger Elemente einer graphomate table existieren Optionen im Property Sheet. So können beispielsweise über die Row-Format-Configurations Zeilen oder Spalten selektiert und nach bestimmten Bedingungen ausgeblendet werden (siehe Handbuch: Row-Format-Configuration - CSS).

Für das statische Ausblenden von speziellen Elementen können diese auch über das There are some properties in the graphomate tables' properties sheet which hide specific elements. For example you can use the Row Format Configurations to change the visibility of rows or columns conditionally. To hide specific elements statically you can set their visibility in the "custom.css" selektiert werden. Nachfolgend sind dafür einige Beispiele aufgeführt. Der Namen der Tabelle im Beispiel muss durch den Namen der gewünschten Tabelle ersetzt werden. The following code block shows some sample css. To use it, the component names (GRAPHOMATETABLE_1_control) have to be replaced with the ones from your application.

Code Block
languagecss
titleCSS-Beispiele
/* Zweiteshides Elementthe vonsecond-last Hintenchild ausblenden */
#GRAPHOMATETABLE_1_control tbody tr:nth-last-child(2)
{
    display: none !important;
}

/* hides Drittesthe third, Viertesfourth undand Fünftesfifth Element ausblendenelement */
#GRAPHOMATETABLE_1_control tbody tr:nth-child(3),
#GRAPHOMATETABLE_1_control tbody tr:nth-child(4),
#GRAPHOMATETABLE_1_control tbody tr:nth-child(5)
{
    display: none !important;
}


/* hide Tabellenthe Headertables' ausblendenheader */
#GRAPHOMATETABLE_1_control thead
{
	display: none;
}


/* hide ERSTEthe SPALTEfirst AUSBLENDENcolumn */
#GRAPHOMATETABLE_1_control tr th:nth-child(1),
#GRAPHOMATETABLE_1_control tr td:nth-child(1)
{
	display: none;
}

 

...

Filter by label (Content by label)
showLabelsfalse
max5
spacesKUNDEN
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel in ("css","ausblenden","display","spalte","zeile","tabellenkopf","tables","spaltenkopf") and type = "page" and space = "KUNDEN"
labelstables ausblenden Spalte Zeile Tabellenkopf Spaltenkopf CSS display

Page Properties
hiddentrue
 
Verwandte Vorgänge