Include two "tr" in the print and export

Include two "tr" in the print and export

BelalBelal Posts: 1Questions: 1Answers: 0
edited March 2016 in Buttons

Hi All,

I am trying to print header with two tr, but the export and print will only include one tr
i have this code

    <thead>
        <tr id="previous_balance">
            <th colspan="10"></th>
            <th colspan="2">Previous Balance</th>
            <th colspan="1">11697678.8663</th>
        < /tr >
        < tr role="row" >
            <th>#</th>
            <th>ID</th>
            <th>CID</th>
            <th>P\R</th>
            <th>Cat</th>
            <th>C Date</th>
            <th>Inv Date</th>
            <th>Amount</th>
            <th>Cur/Ex-R</th>
            <th>Note</th>
            <th>Debit AED</th>
            <th>Credit AED</th>
            <th>Total</th>
        </tr>
    < / thead >

and the print and the export will show only this part

<tr role="row">
            <th>#</th>
            <th>ID</th>
            <th>CID</th>
            <th>P\R</th>
            <th>Cat</th>
            <th>C Date</th>
            <th>Inv Date</th>
            <th>Amount</th>
            <th>Cur/Ex-R</th>
            <th>Note</th>
            <th>Debit AED</th>
            <th>Credit AED</th>
            <th>Total</th>
        </tr>

so is there a way to print both tr's

BR
Belal

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,439Questions: 1Answers: 10,053 Site admin
    Answer ✓

    This is correct I'm afraid - multiline headers are not currently supported in the exported data files.

    Allan

This discussion has been closed.