IE9 is not showing UI Themeroller
IE9 is not showing UI Themeroller
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
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
This discussion has been closed.
Replies
Allan
Thank you very much allan!!! You rock!! :)