Forum Replies Created

Viewing 1 replies (of 1 total)
  • I had this problem as well. So I thought I would pass on my solution. It seems like the latest update to something caused the guidelines for DataTables to change. Before the update, my table didn’t have column headers, which worked fine. To resolve the error, I added a Thead element to the tables HTML, and added two tw elements. Essentially, the table ID was looking for two columns, which is the correct number of columns. All I needed to fix the error was to specify a table header, before the table body, and a single table row with two table column names. The website that the error provides actually helped significantly.

    <table id="AutoNumber2">
    <thead>
    <tr>
    <th>Region</th>
    <th>Distributor</th>
    </tr>
    </thead>
    <tbody>
    • This reply was modified 2 years, 6 months ago by gfuller.
Viewing 1 replies (of 1 total)