I would like to create a table inside a table that has a different border style.
At the moment the generated Document looks like this: http://cl.ly/image/2S1R370e0r3z
What I try to achieve is this (created in MS Word): http://cl.ly/image/1V1K360D3y13
Please find the code for this working example below.
How can I get to the desired result. I already tried to user 'borderSettings' => 'inside' for the nested table, but this setting seems to be ignored.
Thank you!
##########################################
 $cw =  explode(';', str_repeat('550;', 16));
    array_pop($cw);
    $ms_options = array(
        'columnWidths' => array(500, 1200, 4500, 400, 1500, 1500),
        'tableStyle' => 'TableGridPHPDOCX',
        'borderSettings' => 'inside',
        'tableAlign' => 'center',
        'cellMargin' => 75,
        'textProperties' => array(
            'font' => 'Meta',
            'vAlign' => 'center',
        )
    );
    $ms_1 = array( 'colspan' => 1, 'vAlign' => 'center',  'value' => 'No');
    $ms_2 = array( 'colspan' => 1, 'vAlign' => 'center', 'value' => 'Type');
    $ms_3 = array( 'colspan' => 1, 'vAlign' => 'center',  'value' => 'Example');
    $ms_4 = array( 'colspan' => 1, 'vAlign' => 'center', 'value' => 'Example');
    $ms_5 = array( 'colspan' => 1, 'vAlign' => 'center',    'value' =>'Example');
    $ms_6 = array( 'colspan' => 1, 'vAlign' => 'center',    'value' => 'Example');
    $ms_values[] = array($ms_1, $ms_2, $ms_3, $ms_4, $ms_5, $ms_6);
    $ms_values[] = array(
        '1',
        'ABC',
        'asdasd asd',
        '3',
        'asdasd',
        'Test123',
    );
    $ms_values[] = array(
        '1',
        'ABC',
        'asdasd asd',
        '3',
        'asdasd',
        'Test123',
    );
    $c6_1 = array( 'colspan' => 1, 'vAlign' => 'center', 'value' => '3');
    $tf = new \Phpdocx\Elements\WordFragment($docx);
    $text = array(
        array('text' => 'Some Information:', 'bold' => true,'font' => 'Meta', 'lineBreak' => 'after')
    );
    $tf->addText($text);
    $tf->addTable($ms_values, $ms_options);
    $c6_2 = array( 'colspan' => 15, 'value' => $tf);
    $values[] = array($c6_1, $c6_2);
    //A4 width: 11905
    $options = array(
        'columnWidths' => $cw,
        'border'         => 'single',
        'borderWidth'    => 4,
        'borderColor'    => '000000',
        'cellMargin' => array('top' => 100,'right' => 100,'bottom' => 150, 'left' => 100),
        'cellSpacing' => 20,
        'textProperties' => array(
            'font' => 'Meta',
            'vAlign' => 'center',
        )
    );
    $docx->addTable($values, $options);