<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial, helvetica, sans-serif;font-size:10pt;color:#000000;"><div>Hi</div><div><br></div><div>i have a popup which lists the attributes from my wfs layer in a PropertyGrid. This looks really great, but my Fieldnames are coded and have little meaning on first glance. I would like to assign aliases to the Fields and show them in the EditorGrid.</div><div><br></div><div>Has anyone done this, or does anyone have a workaround?</div><div><br></div><div><br></div><div>Yours,</div><div><br></div><div>Rob</div><div><br></div><div>&lt;code&gt;</div><div><br></div><div><div>var popup_wea</div><div>&nbsp; &nbsp; layer_wea.events.on({</div><div>&nbsp; &nbsp; &nbsp; &nbsp; featureselected: function (event) {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var propsGrid = new Ext.grid.PropertyGrid({</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
 &nbsp; autoHeight: true,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; source: event.feature.attributes</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; propsGrid.getColumnModel().setColumnHeader(0, 'EIGENSCHAFT');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; propsGrid.getColumnModel().setColumnHeader(1, 'WERT');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;popup_wea = new GeoExt.Popup({</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; id: 'popup_wea',</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; title: "Informationen",</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; feature: event.feature,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; collapsible: true,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: "fit",</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
 &nbsp; &nbsp; autoHeight: true,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; panIn: true,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 270,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; unpinnable: true,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border: false,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [propsGrid],</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; listeners: {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"close": function() {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; select.unselect(this.feature);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</div><div><span
 class="Apple-tab-span" style="white-space:pre">                        </span>// unselect feature when the popup is closed</div><div>&nbsp; &nbsp; &nbsp; &nbsp; popup_wea.on({</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; close: function() {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(OpenLayers.Util.indexOf(layer_wea.selectedFeatures, this.feature) &gt; -1) {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; select.unselect(this.feature);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; });</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span></div><div><span class="Apple-tab-span" style="white-space:pre">                        </span></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; popup_wea.show();</div><div><span class="Apple-tab-span" style="white-space:pre">                
        </span></div><div>&nbsp; &nbsp; &nbsp; &nbsp; },</div><div>&nbsp; &nbsp; &nbsp; &nbsp; featureunselected: function (event) {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; popup_wea.destroy();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div><span class="Apple-tab-span" style="white-space:pre">                </span></div><div>&nbsp; &nbsp; });</div></div><div><br></div><div>&lt;/code&gt;</div><div style="position:fixed"></div>


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