From 80c82147fc8143eb45ef2000a49fabac889a1615 Mon Sep 17 00:00:00 2001 From: wei <> Date: Wed, 18 Oct 2006 23:38:44 +0000 Subject: fixed onFailure and onSuccess in TInPlaceTextBox --- framework/Web/Javascripts/js/debug/ajax.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'framework/Web/Javascripts/js/debug/ajax.js') 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); } }, { -- cgit v1.2.3