static <T> AutoCompletionBinding<T> |
TextFields.bindAutoCompletion(javafx.scene.control.TextField textField,
Collection<T> possibleSuggestions) |
|
static <T> AutoCompletionBinding<T> |
TextFields.bindAutoCompletion(javafx.scene.control.TextField textField,
javafx.util.Callback<AutoCompletionBinding.ISuggestionRequest,Collection<T>> suggestionProvider) |
Create a new auto-completion binding between the given textField and the
given suggestion provider.
|
static <T> AutoCompletionBinding<T> |
TextFields.bindAutoCompletion(javafx.scene.control.TextField textField,
javafx.util.Callback<AutoCompletionBinding.ISuggestionRequest,Collection<T>> suggestionProvider,
javafx.util.StringConverter<T> converter) |
Create a new auto-completion binding between the given textField and the
given suggestion provider.
|
static <T> AutoCompletionBinding<T> |
TextFields.bindAutoCompletion(javafx.scene.control.TextField textField,
T... possibleSuggestions) |
Create a new auto-completion binding between the given TextField
using the given auto-complete suggestions
|