<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial, helvetica, sans-serif;font-size:10pt"><div style="font-family: arial, helvetica, sans-serif; "><code role="listitem" class="focusRow subFocusRow ">Hi,</code></div><div style="font-family: arial, helvetica, sans-serif; "><code role="listitem" class="focusRow subFocusRow "><br></code></div><div style="font-family: arial, helvetica, sans-serif; "><code role="listitem" class="focusRow subFocusRow ">Standard format...&nbsp;</code><span class="Apple-style-span" style="font-family: monospace; ">text/html as defined in the Parameter tab in Firebug.</span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; "><br></span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; ">I have read that if the format is
 changed, then the attributes can be manipulated ie fields can be left out. I havenīt seen any code fór it though.</span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; "><br></span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; ">I have tried with the content.ftl file in the geoserver workspaces, but the results are pretty grim! I would rather do it in javascript so that everything is kept in my app and not spread around different applications.</span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; "><br></span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; ">yours,</span></div><div style="font-family: arial, helvetica, sans-serif; "><span
 class="Apple-style-span" style="font-family: monospace; "><br></span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; ">Rob</span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; "><br></span></div><div style="font-family: arial, helvetica, sans-serif; "><span class="Apple-style-span" style="font-family: monospace; "><br></span></div><div style="font-family: arial, helvetica, sans-serif; font-size: 10pt; "><br><div style="font-family:arial, helvetica, sans-serif;font-size:13px"><font size="2" face="Tahoma"><hr size="1"><b><span style="font-weight: bold;">Von:</span></b> "dan@inlet.geol.sc.edu" &lt;dan@inlet.geol.sc.edu&gt;<br><b><span style="font-weight: bold;">An:</span></b> Robert Buckley &lt;robertdbuckley@yahoo.com&gt;<br><b><span style="font-weight: bold;">CC:</span></b> users@geoext.org<br><b><span
 style="font-weight: bold;">Gesendet:</span></b> Donnerstag, den 21. Juli 2011, 12:24:24 Uhr<br><b><span style="font-weight: bold;">Betreff:</span></b> Re: [Users] control which fields are displayed in my Geoext popups<br></font><br>What is the format of the data coming back from the WMSGetFeatureInfo?<br><br>&gt; Hi,<br>&gt;<br>&gt; I would like to do the following and after several hours of trying and<br>&gt; googling<br>&gt; will have to admit that I havenīt got far.<br>&gt;<br>&gt; I want to ...<br>&gt;<br>&gt; 1. Restrict the fields displayed in my popup window so that I can control<br>&gt; which<br>&gt; fields are displayed. I donīt want to show fid, objectid etc<br>&gt;<br>&gt; 2. Ideally I would like to use the accordion layout for when there is more<br>&gt; than<br>&gt; one queryable layer, but I canīt find any code to implement this. I have<br>&gt; seen it<br>&gt; on Bryan Mcbrides explorer, but apart from that canīt find any<br>&gt;
 documentation.<br>&gt;<br>&gt; currently I have a popup designed like this...<br>&gt;<br>&gt;<br>&gt; // create the popup<br>&gt; var featureInfo = new OpenLayers.Control.WMSGetFeatureInfo({<br>&gt; queryVisible: true,<br>&gt; highlightOnly: true,<br>&gt; maxFeatures: 5,<br>&gt; layers: [layer_wea_wms,EnMap_SG_WEA_f]<br>&gt; });<br>&gt;<br>&gt; featureInfo.events.on({<br>&gt;&nbsp; &nbsp;  getfeatureinfo: function(e) {<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp;  new GeoExt.Popup({<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  title: "Position:<br>&gt; "+mappanel.map.getLonLatFromPixel(e.xy).transform(epsg900913, epsg4326),<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  width: 400,<br>&gt; autoHeight: true,<br>&gt; layout: 'accordion',<br>&gt; bodyStyle: 'background-color:#FFF;,font-size:14px;',<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  autoScroll: true,<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  maximizable: true,<br>&gt;&nbsp; &nbsp;
 &nbsp; &nbsp; &nbsp; &nbsp;  map: mappanel.map,<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  lonlat: mappanel.map.getLonLatFromPixel(e.xy),<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  html:'&lt;p style="font-size:10px;"&gt;Attributen&lt;/p&gt;&lt;br&gt;'+e.text,<br>&gt; unpinnable:true,<br>&gt; anchored: true,<br>&gt; shadow: true,<br>&gt; listeners: {<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  close: function() {<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  // closing a popup destroys it, but our reference<br>&gt; is<br>&gt; truthy<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  popup = null;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }<br>&gt; }<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp;  }).show();<br>&gt;&nbsp; &nbsp;  }<br>&gt; });<br>&gt;<br>&gt; map.addControl(featureInfo);<br>&gt;
 featureInfo.activate();<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; thanks for any help_______________________________________________<br>&gt; Users mailing list<br>&gt; <a ymailto="mailto:Users@geoext.org" href="mailto:Users@geoext.org">Users@geoext.org</a><br>&gt; <a href="http://www.geoext.org/cgi-bin/mailman/listinfo/users" target="_blank">http://www.geoext.org/cgi-bin/mailman/listinfo/users</a><br>&gt;<br><br><br></div></div><div style="font-family: arial, helvetica, sans-serif; position: fixed; "></div>


</div></body></html>