I have a gallery view block created to load images from a given page into a grid view. I am not using a pager at this time. My problem is that while the view loads perfectly in Chrome, when I attempt to load the view in internet explorer 8 it does not display. Instead the page loads except for the view and then hangs with (1 item remaining) displaying in the status bar. Viewing the source shows that IE has the table in the html to display, but it does not appear to be displaying it.
I have also tried switching the view type, however while that changes the amount of blank space on the page, the images still don't load.
This issue only seems to affect blocks containing only image content, the rest of my views are displaying properly.
Comments
Comment #1
couturier commentedI'm having the same problem, and it seems to be related to something in the upgrade between 3.3 and 3.4 that unsets the operators or interrupts the action of filters. It allows some blocks with images to load and some not. You might want to consider closing this issue and referring to these two others if they will solve your problem. Some people have had success just re-setting the operators, while for others, it appears to be a more complex issue that may require a patch.
http://drupal.org/node/1743064 Update to 7.x-3.4 un-sets the boolean operator in filters
http://drupal.org/node/1742942 7.x-3.4 Upgrade is cancelling boolean operator settings
Comment #2
bruce.mcandrew commentedI don't think it's related. I did have a group of views that had that issue with the update, but in that case the issue was common on both Chrome and IE. This issue seems to only be affecting IE 8 (and presumably earlier, but since this is an internal site and 8 is the minimum we have I can't say for sure). The issue also does not affect IE 9. It seems to be just an issue with how IE 8 displays the image view.
Comment #3
couturier commentedThat sounds really weird. Have you made sure to flush all your IE8 caches? I've found before some problems when IE preserves code caches. You might try posting your problem on http://stackoverflow.com/ or searcing there to reach a larger support community to see if anyone has had similar IE 8 issues. I'm not sure what the stats are on IE 8 usage, but I know Drupal recently dropped support for IE 7.
Comment #4
genjohnson commentedI was having the same issue...any images in views weren't displayed in IE8.
Following the solution from http://drupal.org/node/1283008 (making sure that the css img{max-width:100%} wasn't used in IE8) fixed the issue for me.
Comment #5
mustanggb commented