Hi everyone,
I have a problem with Structured FrameMaker saving width of tables in a concept-type xml file. Has someone encountered this problem?
I changed and saved many files xml type-task - e.g. when the xml file starts with <task id="id205ODK040HS" xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/">... </task>.
I have done everything correctly.
- Commented the appropriate line in the task.rules.txt - /* writer use proportional widths:*/
- In <FMInstallationPath>\fminit\ditafm, I changed ForceTGroupAlignmentToLeft=0
- My code Is as follows: <concept id="id225PDG020XA">
<title>User Manual</title>
<shortdesc>Describes for which documents this manual is valid.</shortdesc>
<prolog>
<author>Zornitza Doneva, P.Eng.</author>
</prolog>
<concept id="id225PDK003E8">
<title>Quick start guide for FL SWITCH
EP72... network switch</title>
<conbody>
<p>UM QS EN EP72..., Revision A</p>
<lines></lines>
<p>This user manual is valid for:</p>
<lines></lines>
<table frame="all" colsep="1" rowsep="1">
<tgroup cols="2" colsep="1" rowsep="1" outputclass="FormatA">
<colspec colnum="1" colname="1" colwidth="3.92in"/>
<colspec colnum="2" colname="2" colwidth="1.00in"/>
<tbody>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7232-HV</entry>
<entry colname="2">1688995</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7200-32GSFP-HV</entry>
<entry colname="2">1688994</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-HV</entry>
<entry colname="2">1688993</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7224-RED-HV</entry>
<entry colname="2">1688992</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7232-LV</entry>
<entry colname="2">1688991</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7200-32GSFP-LV</entry>
<entry colname="2">1688990</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-LV</entry>
<entry colname="2">1688989</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7224-RED-LV</entry>
<entry colname="2">1688988</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7232-MV</entry>
<entry colname="2">1688987</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7200-32GSFP-MV</entry>
<entry colname="2">1688986</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-MV</entry>
<entry colname="2">1688985</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7224-RED-MV</entry>
<entry colname="2">1688983</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-MV</entry>
<entry colname="2">-</entry>
</row>
<row rowsep="0">
<entry colname="1">FL SWITCH EP7232-MV-LV</entry>
<entry colname="2">-</entry>
</row>
</tbody>
</tgroup>
</table>
</conbody>
</concept>
</concept> - Then I saved and reopened the file. However, after that the file is back to proportional measures and the table fits the whole width of the page. The code is shown below. <concept id="id225PDG020XA">
<title>User Manual</title>
<shortdesc>Describes for which documents this manual is valid.</shortdesc>
<prolog>
<author>Zornitza Doneva, P.Eng.</author>
</prolog>
<concept id="id225PDK003E8">
<title>Quick start guide for FL SWITCH
EP72... network switch</title>
<conbody>
<p>UM QS EN EP72..., Revision A</p>
<lines></lines>
<p>This user manual is valid for:</p>
<lines></lines>
<table frame="all" colsep="1" rowsep="1">
<tgroup cols="2" colsep="1" rowsep="1" outputclass="FormatA">
<colspec colnum="1" colname="1" colwidth="80*"/>
<colspec colnum="2" colname="2" colwidth="20*"/>
<tbody>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7232-HV</entry>
<entry colname="2">1688995</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7200-32GSFP-HV</entry>
<entry colname="2">1688994</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-HV</entry>
<entry colname="2">1688993</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7224-RED-HV</entry>
<entry colname="2">1688992</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7232-LV</entry>
<entry colname="2">1688991</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7200-32GSFP-LV</entry>
<entry colname="2">1688990</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-LV</entry>
<entry colname="2">1688989</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7224-RED-LV</entry>
<entry colname="2">1688988</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7232-MV</entry>
<entry colname="2">1688987</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7200-32GSFP-MV</entry>
<entry colname="2">1688986</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-MV</entry>
<entry colname="2">1688985</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7224-RED-MV</entry>
<entry colname="2">1688983</entry>
</row>
<row rowsep="1">
<entry colname="1">FL SWITCH EP7216-16GSFP-MV</entry>
<entry colname="2">-</entry>
</row>
<row rowsep="0">
<entry colname="1">FL SWITCH EP7232-MV-LV</entry>
<entry colname="2">-</entry>
</row>
</tbody>
</tgroup>
</table>
</conbody>
</concept>
</concept>
Regards,
Zornitza Doneva