Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
900
Spell Checker in Grid Cell
posted

Hi,

I have attached a spell checker to one of my grid's columns.  I added an UltraSpellChecker to the form's designer, and attached it to a column at runtime:    myGrid.DisplayLayout.Bands(0).Columns(0).SpellChecker = Me.SpellChecker

I set the SpellChecker.Mode to "AsYouType" so that any misspelled text will get underlined in red.

The problem is that the misspelled text only gets underlined when the cell is in edit mode.  How can I make it so it always shows the underlining?

Thanks,

~Karen

Parents
No Data
Reply
  • 3707
    posted

    I had to use the spell checker controller today for a client project and was wondering the same thing you are. Although, after reading all the documentation I think the answer lies in something you mentioned ("edit mode"). If you're using a regular UltraTextEditor, you can set that control to always be in edit mode, and this works perfect with the spell checker. Cells only go in edit mode after you enter them. I haven't found any work arounds for it yet to stay in edit mode, but maybe Mike will have one or he'll say the same thing, they can only go in edit mode when a users enters it.

Children