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