commit | 88606dd3c20214b685ac3590eb9a0f80a75e181e | [log] [tgz] |
---|---|---|
author | dhawkey@google.com <dhawkey@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Apr 02 12:40:36 2012 +0000 |
committer | dhawkey@google.com <dhawkey@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Apr 02 12:40:36 2012 +0000 |
tree | 1ef47dc478c9688475a5ea4af992d34e6aec35da | |
parent | 3e27069450b5419e0102231c7d75bb11e06b2bd0 [diff] |
Added method to suggest box so that suggestions can be programmatically refreshed. Review by: jlabanca@google.com git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10932 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/client/ui/SuggestBox.java b/user/src/com/google/gwt/user/client/ui/SuggestBox.java index 8f72305..7fad380 100644 --- a/user/src/com/google/gwt/user/client/ui/SuggestBox.java +++ b/user/src/com/google/gwt/user/client/ui/SuggestBox.java
@@ -939,6 +939,15 @@ } /** + * Refreshes the current list of suggestions. + */ + public void refreshSuggestionList() { + if (isAttached()) { + refreshSuggestions(); + } + } + + /** * @deprecated Use the {@link HandlerRegistration#removeHandler} method on the * object returned by {@link #getTextBox}().addChangeHandler * instead