I have a question regarding the GWT MultiWordSuggestOracle ...
According to the examples I've seen, in order to populate the oracle with data, you need to load the data in the frontend:
private MultiWordSuggestOracle oracleProducts = new MultiWordSuggestOracle();
oracleProducts.clear();
for (ProductDTO product : products) {
oracleProducts.add(product.getDescription());
}
....
productTextBox = new WatermarkedTextBox();
new SuggestBox(oracleProducts, productTextBox)
As soon as you have 10 of these text fields with autocomplete on your page, and each of them is filled with 100+ strings, things get a little slow, especially on slower internet connections.
Is there an alternative to the oracle / suggestbox which doesn't requires prepopulating the autocomplete field with data or which sends a request to the backend to do the searching?