From 0fc8c6a1cbac86db7c962c7bff8fb8ec52ee314d Mon Sep 17 00:00:00 2001 From: Alvaro Campos Date: Wed, 4 Apr 2012 11:38:06 -0400 Subject: [PATCH] BUG 8908 The currency field doesn't accept decimal point on Grid SOLVED - This problem exists because is set manually to this type field validate Int - remove this manual assignment en form.js line 1349 --- gulliver/js/form/core/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/js/form/core/form.js b/gulliver/js/form/core/form.js index 865a07041..5fc5fa1df 100755 --- a/gulliver/js/form/core/form.js +++ b/gulliver/js/form/core/form.js @@ -1346,7 +1346,7 @@ function G_Currency( form, element, name ) var me=this; this.parent = G_Text; this.parent( form, element, name); - this.validate = 'Int'; + //this.validate = 'Int'; //commented for allow enter the character '.' this.mType = 'currency'; this.mask= '_###,###,###,###,###;###,###,###,###,###.00'; this.comma_separator = ".";