Hi,
I am trying to simulate intellisense with TLMDEditorView for my scripted application. The built-in "Completion" feauture seems to be for correction and expansion, but I am trying to make it work.
Progress so far:
- I expose a "Customer" object and added my available methods & properties in the completion list.
- Completion fires for word-end when the user hits "." and shows the methods & properties.
- On selection, completion replaces the word "Customer" before the ".". Eg. instead of "Customer.FirstName", I get "FirstName." in my editor.
I have tried a few things, but no luck so far. Is there a better way to do this?
Thanks,
Carl
Comments