From a388f10065a1b000b7a88b21a988fffd0e8b2e36 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 2 Jan 2014 13:54:24 +0530 Subject: [PATCH 1/3] Autosuggest should be rendered above all, just like Date Picker --- public/css/common.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/css/common.css b/public/css/common.css index 1dc627f4a3..2d5f9dad18 100644 --- a/public/css/common.css +++ b/public/css/common.css @@ -572,4 +572,7 @@ ul.linked-with-list li { } /* hack */ -.ui-datepicker { z-index: 9999999 !important; } +.ui-datepicker, +.ui-autocomplete { + z-index: 9999999 !important; +} From 8e1a96e6de1d2001719fdd8c1dcf20d67cb809e0 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 2 Jan 2014 16:08:43 +0530 Subject: [PATCH 2/3] Load extra doctypes while building filter conditions --- webnotes/widgets/reportview.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/webnotes/widgets/reportview.py b/webnotes/widgets/reportview.py index c6c7ffe97b..656d2fa21d 100644 --- a/webnotes/widgets/reportview.py +++ b/webnotes/widgets/reportview.py @@ -169,12 +169,14 @@ def build_filter_conditions(filters, conditions): if isinstance(f, basestring): conditions.append(f) else: + tname = ('`tab' + f[0] + '`') if not tname in webnotes.local.reportview_tables: webnotes.local.reportview_tables.append(tname) - if not hasattr(webnotes.local, "reportview_doctypes"): - load_doctypes() + if not hasattr(webnotes.local, "reportview_doctypes") \ + or not webnotes.local.reportview_doctypes.has_key(tname): + load_doctypes() # prepare in condition if f[2] in ['in', 'not in']: From 2a004e87555b18789c6ddc054af64c52f15dbd4e Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 2 Jan 2014 17:41:55 +0600 Subject: [PATCH 3/3] bumped to version 3.4.3 --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 030af312c3..a36e2aada9 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "base_template": "lib/website/templates/base.html", - "framework_version": "3.4.2", + "framework_version": "3.4.3", "modules": { "Calendar": { "color": "#2980b9",