我正在尝试将字符串列表添加到返回到自动完成文本栏的自动完成值 当选择这些值时,我必须在从谷歌服务器检索信息之前在本地处理它们。
这是将AutoComplete实体绑定到自动文本字段的代码。
final AutoCompleteOptions options = new AutoCompleteOptions();
options.setTypes(Arrays.asList(new String[] { "geocode" }));
final AutoComplete autoComplete = new AutoComplete(this.auto.getElement(), options);
autoComplete.bindTo("bounds", (com.google.gwt.maps.client.Map) this.mapWidget.getMap());
有什么想法吗?