Even Odd row styling not appearing in IE8
Even Odd row styling not appearing in IE8
shawnmitchell
Posts: 5Questions: 0Answers: 0
I'm at a loss as to how to debug this issue. The F12 developer tools in IE are horrible relative to FireBug and Chrome. Has anyone had issues with the alternating row styling in IE8? The datatables samples all display correctly and I'm not doing anything explicit related to row styling. I do have a fnRowCallback, but the styling is fine for all modern browsers, it's just IE8.
ccTable = $('#my-table').dataTable( {
"aaData": json.aaData,
"aoColumns": columns,
"aaSorting": [[1,'asc']],
"bAutoWidth": false,
"sScrollX": "100%",
"bPaginate": false,
"bLengthChange": false,
"bSort": true,
"bInfo": false,
"bFilter": false,
"fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
$('td:eq(0)', nRow).attr("title", Gjson.bicCodes[aData[0]]);
drawRows(nRow, aData);
},
"aoColumnDefs": [ blah blah blah } );
ccTable = $('#my-table').dataTable( {
"aaData": json.aaData,
"aoColumns": columns,
"aaSorting": [[1,'asc']],
"bAutoWidth": false,
"sScrollX": "100%",
"bPaginate": false,
"bLengthChange": false,
"bSort": true,
"bInfo": false,
"bFilter": false,
"fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
$('td:eq(0)', nRow).attr("title", Gjson.bicCodes[aData[0]]);
drawRows(nRow, aData);
},
"aoColumnDefs": [ blah blah blah } );
This discussion has been closed.
Replies
http://i1276.photobucket.com/albums/y466/shawnmitchell658/right_zpsbe0cd663.png
Don't know how to include images, but basically the HTML looks completely different and all the data elements are missing from IE8's developer tools view.
Also, can I suggest using Firebug Lite in IE - much more reliable for inspecting elements I've found!
Allan