[FIX] web: set z-index of 9999 for autocompletion pane of search bar, to avoid being behind jquery ui dialogs. Besides, this pane should always be on top, therefore we can assume that setting 9999 will not have bad side effects

bzr revid: dle@openerp.com-20140311104947-is5qpw71y1m2oakf
This commit is contained in:
Denis Ledoux 2014-03-11 11:49:47 +01:00
parent 1f50cab142
commit 6e9f3ad806
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ instance.web.SearchView = instance.web.Widget.extend(/** @lends instance.web.Sea
}
},
'autocompleteopen': function () {
this.$el.autocomplete('widget').css('z-index', 1004);
this.$el.autocomplete('widget').css('z-index', 9999);
},
},
/**