IE9 is not showing UI Themeroller

IE9 is not showing UI Themeroller

equisdeequisde Posts: 34Questions: 0Answers: 0
edited July 2012 in General
I´m building a C# MVC application which uses DataTables.

Running and debugging my project in VS 2010 the tables appearing successfully with UI ThemeRoller.
But opening the webpage in IE9 the tables are showing with the default visual theme :(

Note: Opening this website examples with IE9 i have no problems.

My initialisation code...

[code] oTable = $('#received').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": '<"H"Tfr>t<"F"ip>',
"iDisplayLength": 5,
"aoColumnDefs": [
{ "bSearchable": false, "bVisible": false, "aTargets": [ 0 ] },
],
"oTableTools": {
"sSwfPath": "/Content/TableTools/copy_csv_xls_pdf.swf",
"aButtons": [
"copy",
"print",
{
"sExtends": "collection",
"sButtonText": "Save as",
"aButtons": [ "csv", "xls", "pdf" ]
}
]

}

});

[/code]

Any help will be highly appreciated

Replies

  • allanallan Posts: 63,541Questions: 1Answers: 10,476 Site admin
    Only IE9 or other browsers as well? I think we'd need a look, as that code looks okay (other than the trailing comma in aoColumnDefs).

    Allan
  • equisdeequisde Posts: 34Questions: 0Answers: 0
    OMG I did´t realize that comma!! Now all is working fine with all browsers.

    Thank you very much allan!!! You rock!! :)
This discussion has been closed.