我有以下 gwt-bootstrap ui.xml :
<b:Typeahead ui:field="typeahead">
<b:TextBox ui:field="searchBox" searchQuery="true"
placeholder="Search..." />
</b:Typeahead>
我如何以编程方式获取预先输入项目的建议响应“单击时”并将其设置为文本进入搜索框?
我有以下 gwt-bootstrap ui.xml :
<b:Typeahead ui:field="typeahead">
<b:TextBox ui:field="searchBox" searchQuery="true"
placeholder="Search..." />
</b:Typeahead>
我如何以编程方式获取预先输入项目的建议响应“单击时”并将其设置为文本进入搜索框?
好吧,Adarsha Answer 在我的情况下并没有真正起作用,因为我使用的是完整的 gwt。所以我的解决方案是:
typeahead.setUpdaterCallback(new Typeahead.UpdaterCallback() {
@Override
public String onSelection(Suggestion selectedSuggestion) {
String text = selectedSuggestion.getDisplayString();
return null;
}
});