<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hi all,<br>I have a short piece of code to populate a GeoExt.data.WMSCapabilitiesStore and display the available layers in a GridPanel, nothing more.<br>It works as I would expect in Internet Explorer, but the GridPanel does not populate in Firefox or Chrome. Is this a known issue, or is there something wrong with my code (below).<br>Many thanks,<br>Eoin<br><br>Ext.onReady(function() {<br><br> <br> var grid = new Ext.grid.GridPanel({<br> title: "Available WMS Layers",<br> region: "north",<br> height:
300,<br> renderTo: document.body,<br> viewConfig: {forceFit: true},<br> store: new GeoExt.data.WMSCapabilitiesStore({<br> url: "http://139.191.1.174/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=getcapabilities&TILED=true", <br> autoLoad: true<br> }),<br> columns: [{header:
"Name", dataIndex: "name", sortable: true},{header: "Title", dataIndex: "title", sortable: true}]<br> });<br> });<br></td></tr></table><br>