We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.shared.ui.combobox.
Interface ComboBoxServerRpc
-
All Superinterfaces:
public interface ComboBoxServerRpc extends ServerRpc
Client to server RPC interface for ComboBox.
Since:
8.0
-
-
Method Summary
All Methods Modifier and Type Method Description void
createNewItem(String itemValue)
Create a new item in the combo box.
void
resetForceDataSourceUpdate()
Reset the force update flag once the list contents have been updated.
void
setFilter(String filter)
Sets the filter to use.
-
-
-
Method Detail
-
createNewItem
void createNewItem(String itemValue)
Create a new item in the combo box. This method can only be used when the ComboBox is configured to allow the creation of new items by the user.
Parameters:
itemValue
- user entered string value for the new item
-
setFilter
void setFilter(String filter)
Sets the filter to use.
Parameters:
filter
- filter string interpreted according to the current filtering mode
-
resetForceDataSourceUpdate
void resetForceDataSourceUpdate()
Reset the force update flag once the list contents have been updated.
Since:
8.9
-
-