From: Lebbeous Fogle-Weekley Date: Thu, 19 Jan 2012 21:30:23 +0000 (-0500) Subject: miker the wise squashes two bugs simply by ... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=39217e7ef179767669aea14387260bc7bfd2f2cc;p=evergreen%2Fequinox.git miker the wise squashes two bugs simply by ... ... switching from FilteringSelect to ComboBox Signed-off-by: Lebbeous Fogle-Weekley --- diff --git a/Open-ILS/web/opac/skin/default/js/search_bar.js b/Open-ILS/web/opac/skin/default/js/search_bar.js index 2e76bfdc1b..c78de1229b 100644 --- a/Open-ILS/web/opac/skin/default/js/search_bar.js +++ b/Open-ILS/web/opac/skin/default/js/search_bar.js @@ -13,14 +13,14 @@ G.evt.common.init.push(searchBarInit); var newSearchLocation; var newSearchDepth = null; -dojo.require("dijit.form.FilteringSelect"); +dojo.require("dijit.form.ComboBox"); dojo.require("openils.AutoSuggestStore"); function autoSuggestInit() { var as_store = new openils.AutoSuggestStore( {"type_selector": G.ui.searchbar.type_selector} ); - var widg = new dijit.form.FilteringSelect({ + var widg = new dijit.form.ComboBox({ "store": as_store, "labelAttr": "match", "labelType": "html",