summaryrefslogtreecommitdiff
path: root/framework/Web/Javascripts/js/debug/ajax.js
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/Javascripts/js/debug/ajax.js')
-rw-r--r--framework/Web/Javascripts/js/debug/ajax.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/framework/Web/Javascripts/js/debug/ajax.js b/framework/Web/Javascripts/js/debug/ajax.js
index 8b75c2ad..0f2d1c1b 100644
--- a/framework/Web/Javascripts/js/debug/ajax.js
+++ b/framework/Web/Javascripts/js/debug/ajax.js
@@ -2586,6 +2586,8 @@ Prado.WebUI.TInPlaceTextBox = Base.extend(
this.editField.disabled = false;
this.editField.value = this.getText();
Prado.Element.focus(this.editField);
+ if(typeof(this.options.onSuccess)=="function")
+ this.options.onSuccess(sender,parameter);
},
onloadExternalTextFailure : function(request, parameter)
@@ -2593,6 +2595,8 @@ Prado.WebUI.TInPlaceTextBox = Base.extend(
this.isSaving = false;
this.isEditing = false;
this.showLabel();
+ if(typeof(this.options.onFailure)=="function")
+ this.options.onFailure(sender,parameter);
},
/**
@@ -2608,6 +2612,8 @@ Prado.WebUI.TInPlaceTextBox = Base.extend(
this.showLabel();
this.element.innerHTML = parameter == null ? this.editField.value : parameter;
this.editField.disabled = false;
+ if(typeof(this.options.onSuccess)=="function")
+ this.options.onSuccess(sender,parameter);
},
onTextChangedFailure : function(sender, parameter)
@@ -2615,6 +2621,8 @@ Prado.WebUI.TInPlaceTextBox = Base.extend(
this.editField.disabled = false;
this.isSaving = false;
this.isEditing = false;
+ if(typeof(this.options.onFailure)=="function")
+ this.options.onFailure(sender,parameter);
}
},
{