I'm trying to use the custom control TextField Auto Complete of ControlsFX.
To do so I bind a TextField
to an ObservableList
:
AutoCompletionBinding<DataPointForIPP> autoCompletionBinding = TextFields.bindAutoCompletion(searchPlane.getSearchTextField(), listDataPoint.getObservableList());
It works great, except that when my ObservableList
is updated, this is not the case of my autocompletion. So I have to call the binding again, which has no sense, since a binding is supposed to adapt to a changed of my list.
Did I miss something in the initilization ?