A panel designed to hold a (geo-)search form.
Sample code showing how to configure a Heron SearchPanel. This example uses the internal default progress messages and action (zoom).
{
xtype: 'hr_searchpanel',
id: 'hr-searchpanel',
title: __('Search'),
bodyStyle: 'padding: 6px',
style: {
fontFamily: 'Verdana, Arial, Helvetica, sans-serif',
fontSize: '12px'
},
protocol: new OpenLayers.Protocol.WFS({
version: "1.1.0",
url: "http://gis.kademo.nl/gs2/wfs?",
srsName: "EPSG:28992",
featureType: "hockeyclubs",
featureNS: "http://innovatie.kadaster.nl"
}),
items: [
{
xtype: "textfield",
name: "name__like",
value: 'Hu*',
fieldLabel: " name"
},
{
xtype: "label",
id: "helplabel",
html: 'Type name of an NL hockeyclub, use * as wildcard<br/>',
style: {
fontSize: '10px',
color: '#CCCCCC'
}
}
],
hropts: {
onSearchCompleteZoom : 11
}
}
Configuration properties in addition to those listed for GeoExt.form.FormPanel.