Hi all,<br>I&#39;ve got a problem with internet explorer I&#39;m hoping someone can help me with.<br>I&#39;ve got a linked grid panel-feature store-vector layor set up, similar to one of the examples on the geo-ext site, for displaying data from a GML file.  It works fine in Firefox, but is blank in internet explorer 7.<br>
The code is below, first the obvious parts, then the whole page worth.<br>Any insight would be welcome; I&#39;m pulling my hair out trying to figure this out.<br><br>Thanks,<br>Aidian Holder<br><br><b><br>Here in the obviously relevant code, the full page code is below that:</b><br>
var fireLines = new OpenLayers.Layer.Vector(&quot;Fire Lines&quot;);<br>        map.addLayer(fireLines);<br><br>var store = new GeoExt.data.FeatureStore({<br>            layer: fireLines,<br>            proxy: new GeoExt.data.ProtocolProxy({<br>
                protocol: new OpenLayers.Protocol.HTTP({<br>                    url: &quot;gml/perimeters.xml&quot;,<br>                    format: new OpenLayers.Format.GML()<br>                })<br>            }),<br>            fields: [<br>
                {name: &#39;FIRE_NAME&#39;, type: &#39;string&#39;},<br>                {name: &#39;ACRES&#39;, type: &#39;string&#39;},<br>                {name: &#39;LOAD_DATE&#39;, type: &#39;string&#39;}<br>            ],<br>
            autoLoad: true<br>        });<br>        <br>      <br>        var detailsPanel = new Ext.grid.GridPanel({<br>            title: &quot;Active Fires&quot;,<br>            region: &quot;west&quot;,<br>            border: true,<br>
            store: store,<br>            columns: [{header: &#39;Name&#39;, dataIndex: &#39;FIRE_NAME&#39;},<br>                      {header: &#39;Acreage&#39;, dataIndex: &#39;ACRES&#39;},<br>                      {header: &#39;Updated&#39;, dataIndex: &#39;LOAD_DATE&#39;}],<br>
            width: 300,<br>            height: 600,<br>            sm: new GeoExt.grid.FeatureSelectionModel()<br>        });<br><br><br><b>Full Page code:</b><br>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;<br>
&lt;html lang=&quot;en&quot;&gt;<br>&lt;head&gt;<br>    &lt;title&gt;&lt;!-- Insert your title here --&gt;&lt;/title&gt;<br> &lt;style type=&quot;text/css&quot;&gt;<br>        <br>        .zoomin {<br>          background-image: url(<a href="http://69.62.213.170/geoext/img/icon_zoomin.png">http://69.62.213.170/geoext/img/icon_zoomin.png</a>) !important;<br>
          height:20px !important;<br>          width:20px !important;<br>        }<br>        .zoomout {<br>          background-image: url(<a href="http://69.62.213.170/geoext/img/icon_zoomout.png">http://69.62.213.170/geoext/img/icon_zoomout.png</a>) !important;<br>
          height:20px !important;<br>          width:20px !important;<br>        }<br>        .zoomfull {<br>          background-image:url(<a href="http://69.62.213.170/geoext/img/icon_zoomfull.png">http://69.62.213.170/geoext/img/icon_zoomfull.png</a>) !important;<br>
          height:20px !important;<br>          width:20px !important;<br>        }<br>        .pan {<br>          background-image:url(<a href="http://69.62.213.170/geoext/img/icon_pan.png">http://69.62.213.170/geoext/img/icon_pan.png</a>) !important;<br>
          height:20px !important;<br>          width:20px !important;<br>        }<br>        .info {<br>            background-image:url(<a href="http://69.62.213.170/geoext/img/info.png">http://69.62.213.170/geoext/img/info.png</a>) !important;<br>
            height:20px !important;<br>            width:20px !important;<br>            <br>        }<br>        .back {<br>            background-image:url(<a href="http://69.62.213.170/geoext/img/resultset_previous.png">http://69.62.213.170/geoext/img/resultset_previous.png</a>) !important;<br>
            height:20px !important;<br>            width:20px !important;<br>            <br>        }<br>        .next {<br>            background-image:url(<a href="http://69.62.213.170/geoext/img/resultset_next.png">http://69.62.213.170/geoext/img/resultset_next.png</a>) !important;<br>
            height:20px !important;<br>            width:20px !important;<br>            <br>        }<br>&lt;/style&gt;<br><br>&lt;script src=&quot;OpenLayers.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br>
&lt;script src=&quot;<a href="http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAswMtbwtotJmv90ak01iBixQU8MLjHkCOgUOFxqy3Ydl6JRQ1exRBk-QjQ5UGpjClJkRmte_it9YuCA">http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAswMtbwtotJmv90ak01iBixQU8MLjHkCOgUOFxqy3Ydl6JRQ1exRBk-QjQ5UGpjClJkRmte_it9YuCA</a>&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br>
&lt;script src=&quot;ext-2.3.0/adapter/ext/ext-base.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br>&lt;script src=&quot;ext-2.3.0/ext-all.js&quot;  type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br>&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;ext-2.3.0/resources/css/ext-all.css&quot;&gt;&lt;/link&gt;<br>
&lt;script src=&quot;GeoExt/GeoExt/lib/GeoExt.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br>&lt;script type=&quot;text/javascript&quot;&gt;<br><br>Ext.onReady(function () {<br>    var options = {<br>            projection: new OpenLayers.Projection(&quot;EPSG:900913&quot;),<br>
            units: &quot;m&quot;,<br>            maxResolution: 156543.0339,<br>            resolutions: [156543.03390000001, 78271.516950000005, 39135.758475000002, 19567.879237500001, 9783.9396187500006, 4891.9698093750003, 2445.9849046875001, 1222.9924523437501, 611.49622617187504, 305.74811308593752, 152.87405654296876, 76.43702827148438, 38.21851413574219, 19.109257067871095, 9.5546285339355475, 4.7773142669677737, 2.3886571334838869, 1.1943285667419434, 0.59716428337097172, 0.29858214168548586],<br>
            maxExtent: new OpenLayers.Bounds(-20037508, -20037508, 20037508, 20037508.34)<br>    };<br>        <br>    var map = new OpenLayers.Map(&#39;map&#39;, options);<br><br>      <br>    var gphy = new OpenLayers.Layer.Google(<br>
        &quot;Physical Relief&quot;,<br>        {type: G_PHYSICAL_MAP, sphericalMercator: true, isBaseLayer: true}<br>        );<br>        gphy.displayInLayerSwitcher = true;<br>    map.addLayer(gphy);<br>        var gstreets = new OpenLayers.Layer.Google(<br>
        &quot;Google Streets&quot;,<br>        {sphericalMercator: true}<br>    );<br>        gstreets.displayInLayerSwitcher = true;<br>        map.addLayer(gstreets);<br>        var gsat = new OpenLayers.Layer.Google(<br>
        &quot;Satellite&quot;,<br>        {type: G_SATELLITE_MAP, sphericalMercator: true}<br>    );<br>        gsat.displayInLayerSwitcher = true;<br>    map.addLayer(gsat);<br>        <br>        var fireLines = new OpenLayers.Layer.Vector(&quot;Fire Lines&quot;);<br>
        map.addLayer(fireLines);<br>        <br>    var modis24 = new OpenLayers.Layer.GML(&quot;Modis 24&quot;,<br>                                               &quot;gml/modis24.xml&quot;,<br>                                               {style: {&#39;externalGraphic&#39;: &#39;fire_icon.svg.png&#39;, &#39;pointRadius&#39;: &#39;6&#39;, &#39;graphicOpacity&#39;: &#39;1&#39;}, visibility: true});<br>
        map.addLayer(modis24);<br>        <br>        var modis48 = new OpenLayers.Layer.GML(&quot;Modis 48&quot;,<br>                                               &quot;gml/modis48.xml&quot;,<br>                                               {style: {&#39;externalGraphic&#39;: &#39;fire_icon.svg.png&#39;, &#39;pointRadius&#39;: &#39;6&#39;, &#39;graphicOpacity&#39;: &#39;0.6&#39;}});<br>
        map.addLayer(modis48);<br>    <br>        var modis7 = new OpenLayers.Layer.GML(&quot;Modis 7d&quot;,<br>                                              &quot;gml/modis7d.xml&quot;,<br>                                              {style: {&#39;externalGraphic&#39;: &#39;fire_icon.svg.png&#39;, &#39;pointRadius&#39;: &#39;6&#39;, &#39;graphicOpacity&#39;: &#39;0.3&#39;}});<br>
        map.addLayer(modis7);<br><br>        var sacto = new OpenLayers.LonLat(-13523315.47936, 4661053.54715);<br>    map.setCenter(sacto, 6);<br>        <br>        var toolbarItems = []<br>    var createToolbar = function() {<br>
            var action;<br><br>            var createSeparator = function() {<br>               toolbarItems.push(&quot; &quot;);<br>               toolbarItems.push(&quot;-&quot;);<br>               toolbarItems.push(&quot; &quot;);<br>
            };                         <br><br>            action = new GeoExt.Action({<br>                control: new OpenLayers.Control.ZoomToMaxExtent(),<br>                map: map,<br>                iconCls: &#39;zoomfull&#39;,<br>
                toggleGroup: &#39;map&#39;,<br>                tooltip: &#39;Zoom to full extent&#39;<br>            });<br><br>            toolbarItems.push(action);<br><br>            createSeparator();<br><br>            action = new GeoExt.Action({<br>
                control: new OpenLayers.Control.ZoomBox(),<br>                tooltip: &#39;Zoom in: click in the map or use the left mouse button and drag to create a rectangle&#39;,<br>                map: map,<br>                iconCls: &#39;zoomin&#39;,<br>
                toggleGroup: &#39;map&#39;<br>            });<br><br>            toolbarItems.push(action);<br><br>            action = new GeoExt.Action({<br>                control: new OpenLayers.Control.ZoomBox({<br>                    out: true<br>
                }),<br>                tooltip: &#39;Zoom out: click in the map or use the left mouse button and drag to create a rectangle&#39;,<br>                map: map,<br>                iconCls: &#39;zoomout&#39;,<br>
                toggleGroup: &#39;map&#39;<br>            });<br><br>            toolbarItems.push(action);<br><br>            action = new GeoExt.Action({<br>                control: new OpenLayers.Control.DragPan({<br>                    isDefault: true<br>
                }),<br>                tooltip: &#39;Pan map: keep the left mouse button pressed and drag the map&#39;,<br>                map: map,<br>                iconCls: &#39;pan&#39;,<br>                toggleGroup: &#39;map&#39;<br>
            });<br><br>            toolbarItems.push(action);<br><br>            createSeparator();<br><br>            ctrl = new OpenLayers.Control.NavigationHistory();<br>            map.addControl(ctrl);<br><br>            action = new GeoExt.Action({<br>
                   tooltip: &quot;Previous view&quot;,<br>                   control: ctrl.previous,<br>                   iconCls: &#39;back&#39;,<br>                   disabled: true<br>               });<br>            toolbarItems.push(action);<br>
<br>            action = new GeoExt.Action({<br>                   tooltip: &quot;Next view&quot;,<br>                   control: ctrl.next,<br>                   iconCls: &#39;next&#39;,<br>                   disabled: true<br>
               });<br>            toolbarItems.push(action);<br>            <br>            createSeparator();           <br>        };<br>        <br>        createToolbar();<br>        <br>        var store = new GeoExt.data.FeatureStore({<br>
            layer: fireLines,<br>            proxy: new GeoExt.data.ProtocolProxy({<br>                protocol: new OpenLayers.Protocol.HTTP({<br>                    url: &quot;gml/perimeters.xml&quot;,<br>                    format: new OpenLayers.Format.GML()<br>
                })<br>            }),<br>            fields: [<br>                {name: &#39;FIRE_NAME&#39;, type: &#39;string&#39;},<br>                {name: &#39;ACRES&#39;, type: &#39;string&#39;},<br>                {name: &#39;LOAD_DATE&#39;, type: &#39;string&#39;}<br>
            ],<br>            autoLoad: true<br>        });<br>        <br>      <br>        var detailsPanel = new Ext.grid.GridPanel({<br>            title: &quot;Active Fires&quot;,<br>            region: &quot;west&quot;,<br>
            border: true,<br>            store: store,<br>            columns: [{header: &#39;Name&#39;, dataIndex: &#39;FIRE_NAME&#39;},<br>                      {header: &#39;Acreage&#39;, dataIndex: &#39;ACRES&#39;},<br>
                      {header: &#39;Updated&#39;, dataIndex: &#39;LOAD_DATE&#39;}],<br>            width: 300,<br>            height: 600,<br>            sm: new GeoExt.grid.FeatureSelectionModel()<br>        });<br><br>        var mapPanel = new GeoExt.MapPanel({<br>
            height: 600,<br>            width: 524,<br>            border: true,<br>            region: &#39;center&#39;,<br>            map: map,<br>            center: new OpenLayers.LonLat(-13523315.47936,4661053.54715),<br>
            zoom: 6,<br>            tbar: toolbarItems<br>        });<br>        var treeConfig = [<br>           {<br>                &quot;nodeType&quot;: &quot;gx_baselayercontainer&quot;<br>            },<br>            {<br>
                &quot;nodeType&quot;: &quot;gx_overlaylayercontainer&quot;,<br>                &quot;loader&quot;: {<br>                    &quot;baseAttrs&quot;: {<br>                        &quot;radioGroup&quot;: &quot;foo&quot;<br>
                    }<br>                }<br>            },<br>            {<br>                &quot;nodeType&quot;: &quot;gx_layer&quot;,<br>                &quot;layer&quot;: &quot;Fire Lines&quot;<br>            }<br>
        ]<br>        var tree = new Ext.tree.TreePanel({<br>            border: true,<br>            region: &#39;east&#39;,<br>            title: &quot;Layers&quot;,<br>            width: 200,<br>            height: 600,<br>
            split: true,<br>            autoScroll: true,<br>            loader: new Ext.tree.TreeLoader({<br>                applyLoader: false<br>            }),<br>            root: {<br>                nodeType: &quot;async&quot;,<br>
                children: treeConfig<br>            },<br>            rootVisible: false,<br>            lines: false<br>        });<br>    <br>    var mainView = new Ext.Panel({<br>        layout: &#39;border&#39;,<br>        renderTo: &#39;view&#39;,<br>
        height: 400,<br>        width: 1024,<br>        items: [detailsPanel, mapPanel, tree]<br>    })<br>});<br>&lt;/script&gt;<br>&lt;/head&gt;<br>&lt;body&gt;<br>    &lt;div id=&quot;view&quot;&gt;&lt;/div&gt;<br>    <br>
    <br>&lt;/body&gt;<br>&lt;/html&gt;<br clear="all">Aidian Holder<br><br>It is not necessary to remind you that the fact that your voice is amplified to the degree where it reaches from one end of the country to the other does not confer upon you greater wisdom or understanding than you possessed when your voice reached only from one end of the bar to the other.<br>
-Edward R. Murrow<br>