jquery.dataTables.min.js:105 Uncaught (in promise) TypeError: Cannot read properties of undefined (r

jquery.dataTables.min.js:105 Uncaught (in promise) TypeError: Cannot read properties of undefined (r

ercanxxercanxx Posts: 1Questions: 1Answers: 0
edited March 2022 in DataTables

Link to test case:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:

<table  id="tablo"> 
    <thead id="theaad">
        <tr>
            <th colspan="2" style="background-color: gray;">ÜRÜNLER</th>
           
            
            
        </tr>
    </thead>
    <tbody id="tbdy">
    </tbody>
    </table>

<tr>
        
       
        <th rowspan="2" style=" background-color: red;">${satir[j].GrupKodu}</th>
       
        <td style="display:;">xTutar</td>
        


        ${tdTutar}
        ${TopTutar}
        </tr>
        <tr>
        <td style="display:;">x1Miktar</td>
       




        ${tdMiktar}
        ${TopMiktar}
        </tr>
        `;   // text --END-- 
        
        $("#tbdy").html(text);

Edited by Kevin: Syntax highlighting. Details on how to highlight code using markdown can be found in this guide

Answers

Sign In or Register to comment.