Problems With Data Tables Display in IE 8

Problems With Data Tables Display in IE 8

GassipGassip Posts: 3Questions: 0Answers: 0
edited July 2013 in General
Hi, Im new using, DataTables. I develop a php site and genrate a table of a MySql Query, the datatables display perfectly in Chrome, Firefox AND Safari, but in ie8 the stile of the css dont show correctly.

I put the code of initialization:
[code]
$(document).ready(function() {
$('#reg').dataTable( {
"bPaginate": true,
"sPaginationType": "full_numbers",
"bLengthChange": false,
"bFilter": false,
"bSort": true,
"bInfo": true,
"bAutoWidth": false,
"bJQueryUI": false,
"iDisplayLength": 5,

"oLanguage": {
"sUrl": "media/Es.txt"
}
} );
} );
[/code]

And mi table code
[code]







C&oacutedigo
Marca
Modelo
Producto
A&ntildeo inicial
A&ntildeo final
Posici&oacuten 1
Posici&oacuten 2
Imagen





<?php
//Asignamos el restultado segun el Query del caso en la parte anterior
$RES_buscar=mysql_query($QUE_buscar) or die(mysql_error());
//Creamos un bucle que imprima los resultados correspondientes en nuestra tabla mientras existan resultados en el arreglo.
while ($row=mysql_fetch_array($RES_buscar)){


echo "


$row[19]
$row[6]
$row[8]
$row[10]
$row[13]
$row[4]
$row[5]
$row[22]
$row[24]

Replies

  • GassipGassip Posts: 3Questions: 0Answers: 0
    I execute the DataTables debugger and show´s the next message: [quote]Data Tables debug bookmarkmarlet:jQuery not loaded on this page, therefore no Data Tables :`([/quote]
  • GassipGassip Posts: 3Questions: 0Answers: 0
    I solved mi problem, thank you, I was using version 2.0 of jquery, just read on the official website of jquery which is no longer supported ie6, ie7 neither ie8.

    PD Scuse me for my BAD English
This discussion has been closed.