Nested tables don't auto fit to content

Hi,

We noticed a bug where we have a table nested inside of another table cell. When they’re both set to AutoFitToContent, the inner table fails to render.

        Document doc = new Document();
        Page page = doc.Pages.Add();
        page.PageInfo.Width = PageSize.PageLetter.Width;
        page.PageInfo.Height = PageSize.PageLetter.Height;
        page.PageInfo.Margin = new MarginInfo(27, 47, 27, 27);

        var table1 = new Table
        {
            ColumnAdjustment = ColumnAdjustment.AutoFitToContent,
            //ColumnAdjustment = ColumnAdjustment.AutoFitToWindow,
            DefaultCellBorder = new BorderInfo(BorderSide.All, 1f)
        };
        var t1row1 = table1.Rows.Add();
        var t1c1 = t1row1.Cells.Add();
        t1row1.Cells.Add("outer cell 2");

        var innerTable = new Table
        {
            ColumnAdjustment = ColumnAdjustment.AutoFitToContent,
            DefaultCellBorder = new BorderInfo(BorderSide.All, 1f)
        };
        var innerTableRow1 = innerTable.Rows.Add();
        innerTableRow1.Cells.Add("inner cell 1");
        innerTableRow1.Cells.Add("inner cell 2");

        t1c1.Paragraphs.Add(innerTable);
        page.Paragraphs.Add(table1);

        doc.ProcessParagraphs();
        doc.Save("testNestedTables.pdf");

@dfactset,

We managed to replicate the problem of not being able to auto fit column content of the inner table. It has been logged under the ticket ID PDFNET-43990 in our bug tracking system. We have linked your post to this ticket and will keep you informed regarding any available updates.

Can I get an update on it?

@dfactset

It is sad to share that the issue could not get resolved yet. We have recorded your concerns and will surely inform you as soon as we make certain progress towards ticket resolution. Please be patient and spare us some time. We apologize for the inconvenience and the delay.