Complex Header Rowspan and Colspan

Complex Header Rowspan and Colspan

PallyPally Posts: 4Questions: 2Answers: 0

i have html datatable like this

<table id='tblIndividualTransaction'>
            <thead>
                <tr>
                    <td rowspan="2"><input id='checkAll' type="checkbox"/></td>
                    <td rowspan="2">CIF No</td>
                    <td rowspan="2">Customer Name</td>
                    <td rowspan="2">Kegiatan Usaha</td>
                    <td rowspan="2">Latest Assets</td>
                    <td rowspan="2">Source Of Fund</td>
                    <td rowspan="2">Portofolio (IDR)</td>
                    <td colspan="4">Transaction Frequency</td>
                    <td colspan="3">Transaction Amount (IDR)</td>
                    <td rowspan="2">Transaction Analysis</td>
                    <td rowspan="2">DECISION</td>
                </tr>
                <tr>
                    <td>Buy</td>
                    <td>Sell</td>
                    <td>Total</td>
                    <td>Form</td>
                    <td>AVG Buy</td>
                    <td>AVG Sell</td>
                    <td>Total AVG</td>
                </tr>
            </thead>
        </table>

and initialize it at js

var dataTable = $("#tblIndividualTransaction").dataTable({
"bJQueryUI": true,
"bLengthChange": true,
"bDestroy":true,
"sPaginationType": "full_numbers",
"bSort": false,
"bScrollCollapse": true
});

but it it shown error :

Uncaught TypeError: Cannot set property '0' of undefined - jquery.dataTables-1.8.1.min.js:117

i was following this doc ,
https://datatables.net/examples/basic_init/complex_header.html

So what did i do wrong ??

Thank you,

Answers

This discussion has been closed.