SEARCH SUBSTRINGS IN CODE COMPLETION WINDOW

Hello,
we are using the ListMembers class to show the completion window in our HTML editor WPF application and we'd like to know if it is possible to search substrings. Our completion window entries look something like "data-order-by" or "data-requires-login" and so we'd like to be able to search for "login" for example so that in combination with Editor.CodeCompletionBox.Filtered we only see list entries that contain "login".
Another problem for us is that typing "data-" instantly selects the first item in the list and adds it to the editor's text. Is there a way to disable certain characters like "-" from closing the code completion window?
Hi Kai,
I've uploaded sample demo that shows how to remove "-" from delimiters and also filter out code completion box depending on what you type.
Please try it and let me know if it works as you need.
https://drive.google.com/open?id=1vFF31RtInKwPtbqWUWKp0VxVgHwqxbkN
regards,
Andrew
Hey Andrew,
this was exactly what we needed, thanks!
Regards