IE not making Ajax call to Load Data
IE not making Ajax call to Load Data
cjxmccac
Posts: 4Questions: 0Answers: 0
So, initially IE was working great with the slider plugin loaded and my config as is. I went and added in TableTools and the ColReorderwithReSize ( probably spelt that wrong but I'm sure you know what I'm referring to ) and tested everything in Chrome/FF/IE. Chrome/FF work excellent but IE was dead in the water. I've cleared caches, killed ALL the plugins, tried completely different computers and now no matter what it seems like IE will not made the XHR request to grab the Ajax data. Everything loads in and the IE dev tools show no errors. The network profiler never displays the ajax call. Any help would be greatly appreciated as I have been trying to reverse whatever I did to break the data! Also, I put everything together today so I should be running the latest of everything.
jQuery 1.7.2
dataTables 1.9.1
scroller 1.0.2
ColReorderWithResize 1.0.5
Here is my INIT code:
[code]
var asInitVals = new Array();
$(document).ready(function() {
var oTable = $('.dataTable').dataTable({
"aaSorting": [ [1,'asc'], [2,'asc'] ],
"bProcessing": true,
"bServerSide":false,
"bStateSave": true,
"sScrollY": "500px",
"sDom": "RfrtiS",
"sAjaxSource": 'http://mydomain.com/ajaxloader.cfm',
"oLanguage": {
"sSearch": "Search all columns:"
},
"fnRowCallback": function( nRow, aData, iDisplayIndex ) {
pid = aData[0];
var s = 'P';
$('td:eq(7)', nRow).html(s);
}
});
$('tfoot input').keyup( function () {
oTable.fnFilter( this.value, $('tfoot input').index(this) );
});
$("tfoot input").each( function (i) {
asInitVals[i] = this.value;
});
$('tfoot input').focus( function( i) {
if ( this.className == "search_init" ) {
this.className = "";
this.value = "";
}
});
$('tfoot input').blur( function (i) {
if ( this.value == "" ) {
this.className = "search_init";
this.value = asInitVals[$('tfoot input').index(this)];
}
});
});
[/code]
jQuery 1.7.2
dataTables 1.9.1
scroller 1.0.2
ColReorderWithResize 1.0.5
Here is my INIT code:
[code]
var asInitVals = new Array();
$(document).ready(function() {
var oTable = $('.dataTable').dataTable({
"aaSorting": [ [1,'asc'], [2,'asc'] ],
"bProcessing": true,
"bServerSide":false,
"bStateSave": true,
"sScrollY": "500px",
"sDom": "RfrtiS",
"sAjaxSource": 'http://mydomain.com/ajaxloader.cfm',
"oLanguage": {
"sSearch": "Search all columns:"
},
"fnRowCallback": function( nRow, aData, iDisplayIndex ) {
pid = aData[0];
var s = 'P';
$('td:eq(7)', nRow).html(s);
}
});
$('tfoot input').keyup( function () {
oTable.fnFilter( this.value, $('tfoot input').index(this) );
});
$("tfoot input").each( function (i) {
asInitVals[i] = this.value;
});
$('tfoot input').focus( function( i) {
if ( this.className == "search_init" ) {
this.className = "";
this.value = "";
}
});
$('tfoot input').blur( function (i) {
if ( this.value == "" ) {
this.className = "search_init";
this.value = asInitVals[$('tfoot input').index(this)];
}
});
});
[/code]
This discussion has been closed.
Replies