A panel designed to hold a (geo-)search form.
Sample code showing how to configure a Heron FormSearchPanel. This example uses the internal default progress messages and action (zoom). Note that the fields in the items must follow the convention outlined in GeoExt.form.SearchAction.
{
xtype: 'hr_formsearchpanel',
name: 'Attribute (Form) Search: USA States',
header: false,
protocol: new OpenLayers.Protocol.WFS({
version: "1.1.0",
url: "http://suite.opengeo.org/geoserver/ows?",
srsName: "EPSG:4326",
featureType: "states",
featureNS: "http://usa.opengeo.org"
}),
downloadFormats: [
{
name: 'CSV',
outputFormat: 'csv',
fileExt: '.csv'
},
{
name: 'GML (version 2.1.2)',
outputFormat: 'text/xml; subtype=gml/2.1.2',
fileExt: '.gml'
},
{
name: 'ESRI Shapefile (zipped)',
outputFormat: 'SHAPE-ZIP',
fileExt: '.zip'
},
{
name: 'GeoJSON',
outputFormat: 'json',
fileExt: '.json'
}
],
items: [
{
xtype: "textfield",
name: "STATE_NAME__like",
value: 'ah',
fieldLabel: " name"
},
{
xtype: "label",
id: "helplabel",
html: 'Type name of a USA state, wildcards are appended and match is case-insensitive.<br/>Almost any single letter will yield results.<br/>',
style: {
fontSize: '10px',
color: '#AAAAAA'
}
}
],
hropts: {
onSearchCompleteZoom: 10,
autoWildCardAttach: true,
caseInsensitiveMatch: true,
logicalOperator: OpenLayers.Filter.Logical.AND
}
}
Configuration properties in addition to those listed for GeoExt.form.FormPanel.
Should search strings (LIKE comparison only) always be pre/postpended with a wildcard ‘*’ character. default value is false.
Should search strings (LIKE and EQUALS comparison only) be matched case insensitive? NB case insensitive matching is only supported for WFS 1.1.0 and higher (not for WFS 1.0.0!). default value is false.
Options for layer activation when search successful.
The logical operator to use when combining multiple fields into a filter expresssion. Values can be OpenLayers.Filter.Logical.OR (‘||’) or OpenLayers.Filter.Logical.AND (‘&&’) default value is OpenLayers.Filter.Logical.AND.
Function to call when search is complete. Default is to show “Search completed” with feature count on progress label.
Function to call to perform action when search is complete. Either zoom to single Point feature or zoom to extent (bbox) of multiple features
Zoomlevel to zoom into when feature(s) found and panned to feature. default value is 11.
Function to call when search has failed.
Function to call when search is starting. Default is to show “Searching...” on progress label.
Public properties in addition to those listed for GeoExt.form.FormPanel.
Layout for the status Panel.
Public methods in addition to those listed for GeoExt.form.FormPanel.
Function called when search is canceled.
Parameters: | options – Object The options passed to the GeoExt.form.SearchAction constructor. |
---|
Interceptor to the internal form’s search method.
Abort/cancel search via protocol.