Any help on applying style to TableName (in this case AIRCRAFT) would be most appreciated:
...extract from source code .....
<?xml version="1.0" encoding="UTF-16"?>
<?xml-stylesheet type="text/css" href="test.css" ?>
<XML_Transfer>
<Table TableName="AIRCRAFT">
<Fields>
<Field>
<Name>AC_SERIAL_NO</Name>
<Type>200</Type>
<DefinedSize>8</DefinedSize>
<Precision>0</Precision>
<NumericScale>0</NumericScale>
</Field>
<Field>
<Name>AIRFRAME_HOURS</Name>
<Type>139</Type>
<DefinedSize>16</DefinedSize>
<Precision>0</Precision>
<NumericScale>0</NumericScale>
</Field>
</Fields>
<Row>
<AC_SERIAL_NO>XX001</AC_SERIAL_NO>
<AIRFRAME_HOURS>1846.704</AIRFRAME_HOURS>
</Row>
</Table>
I have several other tables to which I would like to apply different style.
I am happy with the other tags - just stuck with TableName.
...extract from source code .....
<?xml version="1.0" encoding="UTF-16"?>
<?xml-stylesheet type="text/css" href="test.css" ?>
<XML_Transfer>
<Table TableName="AIRCRAFT">
<Fields>
<Field>
<Name>AC_SERIAL_NO</Name>
<Type>200</Type>
<DefinedSize>8</DefinedSize>
<Precision>0</Precision>
<NumericScale>0</NumericScale>
</Field>
<Field>
<Name>AIRFRAME_HOURS</Name>
<Type>139</Type>
<DefinedSize>16</DefinedSize>
<Precision>0</Precision>
<NumericScale>0</NumericScale>
</Field>
</Fields>
<Row>
<AC_SERIAL_NO>XX001</AC_SERIAL_NO>
<AIRFRAME_HOURS>1846.704</AIRFRAME_HOURS>
</Row>
</Table>
I have several other tables to which I would like to apply different style.
I am happy with the other tags - just stuck with TableName.