Next problem.

I have a textbox that autocompletes from a dynamic custom autocompletesource.
It works, but only if the entered text is at the beginning of a autocomplete item.

So I enter "abc".
The autocompletelist contains "abcd", "defabc".
What it does now is only show the first item.
What I want it to do is to also show the second item.

What would also work is it to show the complete custom autocompletelist, because I already filtered it myself.

I've searched around the net, and it seems there is no 'good' way to do it.
Most suggestions go for making a custom control, which I might, but would wouldn't prefer.

Does anyone here by any chance know a fancy hack to fix this?

Thanks