I am trying to change the MIME type in a WMSLegend object from GIF to PNG using the following code:<br><br>xtype: &#39;gx_legendpanel&#39;,<br>id: &#39;LegendPanel&#39;,<br>autoScroll: true,<br>height: 350,<br>title: &#39;Legend&#39;,<br>
collapsible: true,<br>region: &#39;south&#39;,<br>split: true,<br>defaults: {<br>            baseParams: {<br>                        FORMAT: &#39;image/png&#39;<br>            },<br>useScaleParameter: false<br>}<br><br>However, when I run my app, it is appending an extra FORMAT attribute after the default one:<br>
<br><a href="http://geoserver:8080/geoserver/ows?SERVICE=WMS&amp;FORMATS=image%2Fpng&amp;TRANSPARENT=TRUE&amp;VERSION=1.1.1&amp;REQUEST=GetLegendGraphic&amp;EXCEPTIONS=application%2Fvnd.ogc.se_xml&amp;LAYER=mylayer&amp;FORMAT=image/gif&amp;FORMAT=image%2Fpng">http://geoserver:8080/geoserver/ows?SERVICE=WMS&amp;FORMATS=image%2Fpng&amp;TRANSPARENT=TRUE&amp;VERSION=1.1.1&amp;REQUEST=GetLegendGraphic&amp;EXCEPTIONS=application%2Fvnd.ogc.se_xml&amp;LAYER=mylayer&amp;FORMAT=image/gif&amp;FORMAT=image%2Fpng</a><br>
<br>My application is reading the first FORMAT attribute and rendering the legend as a GIF instead of a PNG.<br><br>Is there any way to suppress the first attribute, or is this a bug in GeoExt?<br><br>The same thing appears to happen with the SCALE parameter as well<br>
<br><br>Thanks,<br><br>Andrew<br><br>