details:   https://code.openbravo.com/erp/devel/pi/rev/e41a9ad232c6
changeset: 22662:e41a9ad232c6
user:      Augusto Mauch <augusto.mauch <at> openbravo.com>
date:      Mon Mar 10 12:49:47 2014 +0100
summary:   Fixes issue 25610: text area fields do not parse properly the filter 
criteria

The problem was that the text area columns where not being considered text 
column when they were filtered. This was because they used the 'textArea' type, 
which was not included in the smartclientbuiltinTypes. This has been fixed by 
including it, and defining that the textAreaType inherits from the text type.

diffstat:

 
modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js
 |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (15 lines):

diff -r 15a48f5b6cfe -r e41a9ad232c6 
modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js
--- 
a/modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js
  Mon Mar 10 17:14:30 2014 +0530
+++ 
b/modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js
  Mon Mar 10 12:49:47 2014 +0100
@@ -856,4 +856,8 @@
       }
     }
   });
-}());
\ No newline at end of file
+}());
+
+isc.builtinTypes.textArea = {
+  inheritsFrom: "text"
+};
\ No newline at end of file

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to