GPS-Sport ForenRun.GPS GeneralMonthly and Yearly Performance do not load data
Bitte einloggen, um neue Kommentare zu erstellen Foren durchsuchen
Erste Seite<Seite1von1>Letzte Seite
pdrunning 22.12.2015 17:18:09 UTC



ok, so thats the reason
admin 22.12.2015 14:28:19 UTC



They are just simple HTML fragments loaded through Ajax. But, yes, for Internet Explorer using Ajax requires an ActiveX object:

http://www.javascriptkit.com/dhtmltutors/ajaxgetpost.shtml

Example:

function ajaxPost(url, data, callback)
{

var passData = data;
var AJAX = null;
if (window.XMLHttpRequest)
{
AJAX=new XMLHttpRequest();
}
else
{
AJAX=new ActiveXObject("Microsoft.XMLHTTP");
}
if (AJAX==null)
{
return false
}
else
{
AJAX.open("POST", url, true);
AJAX.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
AJAX.onreadystatechange = function()
{
if (AJAX.readyState==4 || AJAX.readyState=="complete")
{
callback(AJAX.responseText, AJAX.status);
}
}
AJAX.send(passData);
return true;
}
}
pdrunning 22.12.2015 14:12:38 UTC



it seems that active-x filtering is blocking these tables
so those tables are active-x components?
admin 17.12.2015 11:34:37 UTC



I've checked IE11 on Windows 10 and Windows 7 and in both cases, these views do load correctly. Perhaps the server was momentarily overloaded. Both views are loaded after the main page is loaded.

Another possible explanation would be that there's some sort of security tool or ad cleaner installed on your IE11 that keeps additional content from loading.
pdrunning 15.12.2015 12:05:41 UTC



seems like both views have problems, they are stuck in loading status: 'loading ....':

- windows 10
- IE11 problem as discribed
- Edge it works fine
Erste Seite<Seite1von1>Letzte Seite
© 2024 | Impressum | Allgemeine Geschäftsbedingungen | Nutzungsbedigungen | Datenschutzerklärung | Widerruf und Rücksendung | Batterieentsorgung