Package com.vaadin.shared.ui.combobox
Interface ComboBoxServerRpc
-
- All Superinterfaces:
Serializable
,ServerRpc
public interface ComboBoxServerRpc extends ServerRpc
Client to server RPC interface for ComboBox.- Since:
- 8.0
-
-
Method Summary
All Methods Instance Methods Abstract 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
-
-