Uncaught TypeError: fa is undefined

This error means you have a bad table structure, make sure you follow these rules that worked for me.

1. Do not use colspan=""

2. be sure you use <thead>

3. Be sure to sue <tbody>

Example of the proper table structure

    <table class="table table-bordered">
        <thead>
            <tr>
                <th>Header</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Content</td>
            </tr>
        </tbody>
    </table>