Skip to content
This repository was archived by the owner on May 6, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ gxp.plugins.SpatialSelectorQueryForm = Ext.extend(gxp.plugins.QueryForm, {
if (schema) {
var autoCompleteCfg = me.autoComplete || {};
// configure exception listener, leaving existing listeners untouched
var autoCompleteListeners = me.autoComplete.listeners || {};
var autoCompleteListeners = autoCompleteCfg.listeners || {};
Ext.applyIf(autoCompleteListeners, {
"exception": function(proxy, type, action, params, errorResponse, arg) {
me.exceptionCallback(errorResponse);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ gxp.plugins.WPSManager = Ext.extend(gxp.plugins.Tool,{
*/
instancePrefix: "wpsExecute",

silentErrors: false,
silentErrors: true,

/** api: config[pollingInterval]
* ``Number`` polling interval in milliseconds for the download callback
Expand All @@ -98,7 +98,7 @@ gxp.plugins.WPSManager = Ext.extend(gxp.plugins.Tool,{
});

//OpenLayers.ProxyHost = (this.geostoreProxy) ? this.geostoreProxy : this.target.proxy;

var me = this;
if(! this.geoStoreClient)
this.geoStoreClient = new gxp.plugins.GeoStoreClient({
url: (this.geostoreUrl) ? this.geostoreUrl : this.target.geoStoreBaseURL,
Expand All @@ -107,7 +107,7 @@ gxp.plugins.WPSManager = Ext.extend(gxp.plugins.Tool,{
proxy: (this.geostoreProxy) ? this.geostoreProxy:this.target.proxy,
listeners: {
"geostorefailure": function(tool, msg){
if(!silentErrors){
if(!me.silentErrors){
Ext.Msg.show({
title: "Geostore Exception",
msg: msg,
Expand Down Expand Up @@ -340,7 +340,7 @@ gxp.plugins.WPSManager = Ext.extend(gxp.plugins.Tool,{
me.responseManager(responseObj,instanceName, callback, statusUpdated, instanceIndex);
},
failure: function(response, opts){
if(!silentErrors){
if(!me.silentErrors){
Ext.Msg.show({
title: "Instance Update Status Exception",
msg: response,
Expand Down