Hello,
i am experimenting problems with loadpanel of DynAPI.
When I use setURL to load LARGE HTML/TEXT-Files (30kb
or more) into a LoadPanel, the document only
partially load on Internet Explorer 5/6. It is not a
problem with loading images, its the page, that
doesn't load completely. Function does only load the
first 5-10kb. I've tested it with loadpanel,
loadlayer, loadlayerscroll: all the same! On Netscape
(all versions) no problem.
Need help, please!!!
P.S.: Sorry for my bad german school english:-((
Logged In: YES
user_id=102864
In loadpanel.js modify line 186 as follows:
Original line:
else if (!lpanel.loadElement.document.isLoading && (lpanel.loadElement.document.readyState=='interactive' ||
lpanel.loadElement.document.readyState=='complete')) {
Fixed line:
else if (!lpanel.loadElement.document.isLoading && (lpanel.loadElement.document.readyState=='complete')) {
This will remove the check for a readyState of 'interactive' which is true before the file has completed loading.