<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial,helvetica,sans-serif;font-size:10pt;color:#40007f;">Hi,<br><br>I am using a propertygrid to display the attributes of a vector layer.<br><br>I would like to be able to do two things....<br><br><span>1. Add a little pointer to the bottom of the grid so that one sees clearly which element is selected. (I am refering to this example (<a target="_blank" href="http://dev.geoext.org/trunk/geoext/examples/popup.html">http://dev.geoext.org/trunk/geoext/examples/popup.html</a>)</span><br>2. Be able to filter (regulate) which attributes are being shown by the propertygrid.<br><br>Thanks for any help,<br><br>Rob<br><br>My code for the popup is here: It is triggered by clicking on the layer "layer_wea"<br><br><br>layer_wea.events.on({<br>&nbsp;featureselected: function (event) {<br>&nbsp;<br>&nbsp; var propsGrid = new
 Ext.grid.PropertyGrid({<br>&nbsp;&nbsp; autoHeight: true,<br>&nbsp;&nbsp; source: event.feature.attributes<br>&nbsp; });<br><br>&nbsp; // rename the columns in the property grid<br>&nbsp; propsGrid.getColumnModel().setColumnHeader(0, 'EIGENSCHAFT');<br>&nbsp; propsGrid.getColumnModel().setColumnHeader(1, 'WERT');<br>&nbsp;<br>&nbsp; popup_wea = new GeoExt.Popup({<br>&nbsp;&nbsp; id: 'popup_wea',<br>&nbsp;&nbsp; title: "Informationen",<br>&nbsp;&nbsp; feature: event.feature,<br>&nbsp;&nbsp; collapsible: true,<br>&nbsp;&nbsp; layout: "fit",<br>&nbsp;&nbsp; autoHeight: true,<br>&nbsp;&nbsp; panIn: true,<br>&nbsp;&nbsp; width: 270,<br>&nbsp;&nbsp; unpinnable: true,<br>&nbsp;&nbsp; border: false,<br>&nbsp;&nbsp; items: [propsGrid]<br>&nbsp; });<br><br>&nbsp; popup_wea.show();<br>&nbsp;},<br>&nbsp;featureunselected: function (event) {<br>&nbsp; popup_wea.destroy();<br>&nbsp;}<br>});<br><div><br></div>
</div></body></html>