Server side table displays in Firefox and Chrome, not IE

Server side table displays in Firefox and Chrome, not IE

andrew_poscomp_caandrew_poscomp_ca Posts: 2Questions: 0Answers: 0
edited August 2011 in DataTables 1.8
I have an app with several tables. One uses server side data and the others do not.

In Firefox and Chrome, all tables display correctly (excluding some picky CSS stuff). In IE, the server side table does not display, but the others do.

The server side data comes from an Ignited Datatables source, and the output validates with JSONLint.

Feel free to poke at the app. https://www.poscomp.ca/dhcpt. The login is a dummy form. The broken table is under the 'dynamic hosts' option and a working example is under 'IOSVersions'.

I'd appreciate any insight.

Replies

  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    you have a trailing comma in your array that IE is notorious for not tolerating.

    [code]
    "aoColumnDefs": [
    { "sWidth": "30%", "aTargets": [ 2 ] }, // <--- remove the comma
    ],
    [/code]
  • andrew_poscomp_caandrew_poscomp_ca Posts: 2Questions: 0Answers: 0
    Brilliant! Thanks a million.
This discussion has been closed.