我有以下GWT-引導ui.xml:如何使用Bootstrap Typeahead的選定值設置文本框的值?
<b:Typeahead ui:field="typeahead">
<b:TextBox ui:field="searchBox" searchQuery="true"
placeholder="Search..." />
</b:Typeahead>
如何以編程採取響應提示「點擊」的預輸入的項目,並將其設置爲文本到搜索框?
我有以下GWT-引導ui.xml:如何使用Bootstrap Typeahead的選定值設置文本框的值?
<b:Typeahead ui:field="typeahead">
<b:TextBox ui:field="searchBox" searchQuery="true"
placeholder="Search..." />
</b:Typeahead>
如何以編程採取響應提示「點擊」的預輸入的項目,並將其設置爲文本到搜索框?
那麼Adarsha答案不真的在我的情況下工作,因爲我使用完整的gwt。所以我的解決方案是:
typeahead.setUpdaterCallback(new Typeahead.UpdaterCallback() {
@Override
public String onSelection(Suggestion selectedSuggestion) {
String text = selectedSuggestion.getDisplayString();
return null;
}
});
以下鏈接肯定會幫助你 -
Get selected items value for Bootstrap's typeahead
一旦你選定的價值它只是在做textbox.setValue(值)的問題。