From 9db8910b0aca7a4c4aeff51640d813661d204b00 Mon Sep 17 00:00:00 2001 From: Jeremy Grelle Date: Tue, 22 Apr 2008 21:27:49 +0000 Subject: [PATCH] Temporarily removing until it can be refactored to use Ext 2.0. --- .../META-INF/spring/SpringFaces-Ext.js | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 spring-js/src/main/resources/META-INF/spring/SpringFaces-Ext.js diff --git a/spring-js/src/main/resources/META-INF/spring/SpringFaces-Ext.js b/spring-js/src/main/resources/META-INF/spring/SpringFaces-Ext.js deleted file mode 100644 index eb15469b..00000000 --- a/spring-js/src/main/resources/META-INF/spring/SpringFaces-Ext.js +++ /dev/null @@ -1,31 +0,0 @@ -SpringFaces.ExtGenericFieldAdvisor = function(config){ - - Ext.apply(this, config); -}; - -SpringFaces.ExtGenericFieldAdvisor.prototype = { - - targetElId : "", - msgElId : "", - decoratorType : "", - decorator : null, - decoratorAttrs : "", - - apply : function(){ - - var target = document.getElementById(this.targetElId); - var msgEl = document.getElementById(this.msgElId); - - this.decorator = eval("new "+ this.decoratorType + "(" + this.decoratorAttrs +");" ); - - this.decorator.msgTarget=msgEl; - this.decorator.applyTo(target); - }, - - validate : function(){ - return this.decorator.validate(); - } - -}; - -Ext.onReady(SpringFaces.applyAdvisors); \ No newline at end of file