Issues with displaying the right info

Issues with displaying the right info

54696d2054696d20 Posts: 75Questions: 18Answers: 0

I have an example. http://live.datatables.net/tobabovo/10

If you look at the table, sort by X504 until you see 3 students that have 1 as a value

johnn awesome smith
JONATHON REX SWAIM
TAELYN SARAHI MULHOLLAND

but.... if you look at the formattedString (data).. You can see that JONATHON REX SWAIM only has 1, not the other 2.

Any ideas?

Answers

  • kthorngrenkthorngren Posts: 20,264Questions: 26Answers: 4,764

    That was an interesting issue to find. You have the X504 and SpecEd columns reversed. Your table has:

                <th>X504</th>
                <th>SpecEd</th>
    

    But your Datatable has:

                { data: "specEd" },
                { data: "x504",
    

    Kevin

  • 54696d2054696d20 Posts: 75Questions: 18Answers: 0

    Thanks @kthorngren... That's interesting..

This discussion has been closed.