Bind input content of auto-complete input field

What I am trying to do:

I got an input field with auto-complete enabled.
If there are no results from the auto-complete, I want to use the input (typed) value in the input field to bind it to a server connect action (or hidden form). But the value from the data bindings menu of that (auto-complete) input field is not equal to the typed input text, because the value is set by the autocomplete function. So how can I grab this typed text??

Thanks for any help in advance.

There is a special event for that.
Open dynamic events of the autocomplete, select no results click:

Select to load your server action (or set value, or whatever action you need):

And for dynamic data select the typed value, returned by the autocomplete:

1 Like

sadly this one works only if the user click on the no results, is it possible to make it behave like a normal input where the autocomplete outputs its value on every typed character?