diff app/view/widgets/LadaForm.js @ 74:5c58c0e8936b

Add function which translates the errorcodes returned from the server.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Wed, 05 Jun 2013 18:04:07 +0200
parents fcb63271d1bd
children 4a82e28dfcc4
line wrap: on
line diff
--- a/app/view/widgets/LadaForm.js	Wed Jun 05 18:03:10 2013 +0200
+++ b/app/view/widgets/LadaForm.js	Wed Jun 05 18:04:07 2013 +0200
@@ -86,6 +86,14 @@
 
     onModelLoadFailure: function(record, operation) {
         this.fireEvent('loadfailure', this, record, operation);
+    },
+
+    translateReturnCodes: function(codes) {
+        var translated = {};
+        for (var k in codes) {
+            translated[k] = Lada.getApplication().bundle.getMsg(codes[k]);
+        }
+        return translated;
     }
 
 });

http://lada.wald.intevation.org