Merge pull request #1216 from Jennydmz/BUG-9873

BUG 9873 Error creating Dynaform from a PM Table.
This commit is contained in:
julceslauhub
2013-01-23 05:39:10 -08:00

View File

@@ -162,7 +162,7 @@ Ext.onReady(function(){
allowBlank: true,
listeners:{
change: function(f,e){
this.setValue(this.getValue().toUpperCase());
this.setValue(this.getValue().replace(/\s/g,'').toUpperCase());
}
}
}