1. Datenstrom | |
2. Aktionen | |
3. Attribute |
1. Datenstrom | |
Die Namen der Variablen entsprechen den Namen der XML- Tags im Datenstrom. Beispiel: <?xml version='1.0' encoding='ISO-8859-1'?> <?xml-stylesheet type='text/xml'?> <formular name='testinvisible'> <header> <date>29.09.2003 22:24:22</date> <producer>x-Forms Sample Data</producer> <source>c:\testinvisible.fo</source> <locale>GERMAN</locale> </header> <data> <Variable1>Herr</Variable1> <Variable2>Max</Variable2> <Variable3>Meier</Variable3> <Variable4>Lorettostr. 33</Variable4> <Variable5>12345 Musterstadt</Variable5> </data> </formular> Zum Anfang |
2. Aktionen | |
Die IDs der auszublendenen Elemente entsprechen den Namen der XML- Tags im Datenstrom. Beispiel: <?xml version='1.0' encoding='ISO-8859-1'?> <?xml-stylesheet type='text/xml'?> <formular name='testinvisible'> <header> <date>29.09.2003 22:24:22</date> <producer>x-Forms Sample Data</producer> <source>c:\testinvisible.fo</source> <locale>GERMAN</locale> </header> <actions> <BlockAussen visible='true'/> <BlockInnen visible='true'/> </actions> <data> <Variable1></Variable1> </data> </formular> Zum Anfang |
3. Attribute | |
Die IDs der Elemente, deren Attribute verändert werden sollen entsprechen den Namen der XML- Tags im Datenstrom. Beispiel: <?xml version='1.0' encoding='ISO-8859-1'?> <?xml-stylesheet type='text/xml'?> <formular name='testinvisible'> <header> <date>29.09.2003 22:24:22</date> <producer>x-Forms Sample Data</producer> <source>c:\testinvisible.fo</source> <locale>GERMAN</locale> </header> <attributes> <BlockAussen color="#000000" background-color="#00aa00"/> <BlockInnen color="#FFFFFF" background-color="#ff0000"/> </attributes> <data> <Variable1></Variable1> </data> </formular> Zum Anfang |