UNIT6-open / TemplateEngine.Docx

Smart docx template engine for .NET
Other
408 stars 136 forks source link

BUG: Table inside a Table Cell #44

Open davidchandra opened 6 years ago

davidchandra commented 6 years ago

There seems to be a bug in table nesting. I tried to put a table in a table cell, when it generates there is no error but the whole row does not show anything. The main table is part of a List Conceptual Structure:

<List>
 <MainTable>
   <Row>
      <Cell1>
             fields....
      </Cell1>
     <Cell2>
             <ChildTable>
                    <Row>
                          fields...  
                    </Row>
             </ChildTable>
     </Cell2>

   </Row>
  </MainTable>
</List>