how to customize the Insert table row ?
Posted: Fri Jul 16, 2021 3:17 pm
hi,
we need to add a table row in the existing Table with existing class attributes in the Oxygen XML web author .
Existing table row :
we would like to add a new row after the row using "Insert Row Below" option. But it creating row without class attributes like below
how to customize the Insert table row option in web author to add a row like the following with attributes ?
regards,
Ashok
we need to add a table row in the existing Table with existing class attributes in the Oxygen XML web author .
Existing table row :
Code: Select all
<row class="- topic/row ">
<entry class="- topic/entry ">
<p class="- topic/p "> Pear Tree Quality Fund </p>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p ">USBOX </p>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p ">QGIAX </p>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p ">QGIRX </p>
</entry>
</row>
Code: Select all
<row class="- topic/row ">
<entry class="- topic/entry ">
<p class="- topic/p "> Pear Tree Quality Fund </p>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p ">USBOX </p>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p ">QGIAX </p>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p ">QGIRX </p>
</entry>
</row>
<row>
<entry/>
<entry/>
<entry/>
<entry/>
</row>
Code: Select all
<row class="- topic/row ">
<entry class="- topic/entry ">
<p class="- topic/p "/>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p "/>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p "/>
</entry>
<entry class="- topic/entry ">
<p class="- topic/p "/>
</entry>
</row>
Ashok