Author mode: table columns (Table Cell Span Provider?)
Posted: Tue Oct 07, 2008 1:37 am
I would like to organize a set of tags in a table in the author view. I am able to do so by following the simple tutorial (http://www.oxygenxml.com/doc/ug-oxygen/ ... e-css.html). The problem is that one of the tags is optional. This causes the columns to not line up.
Example:
Will produce:
Is there a way I can get it to produce this?
Do I need to create a Table Cell Span Provider?
Thanks,
Kevin
Example:
Code: Select all
<fields>
<field>
<name>a</name>
<optional>o</optional>
<value>1</value>
</field>
<field>
<name>b</name>
<value>2</value>
</field>
</fields>
Code: Select all
a o 1
b 2
Code: Select all
a o 1
b 2
Thanks,
Kevin