Rank: Member Groups: Member
Joined: 12/19/2007 Posts: 21
|
Is it possible to spell check rows and columns in a datagrid?
|
Rank: Member Groups: Member
Joined: 12/19/2007 Posts: 21
|
I did find that adding the datagrid to the ControlToCheck property works.
The issue I'm having is that when I click "Change" in the spell check dialog box it does not change the word in the datagrid.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, You won't be able to use dialog based spell checker for a DataGrid, you will have to use context menu based: http://demo.essentialobjects.com/Demos/Spell%20Checker/Features/Context%20Menu%20Based/Demo.aspxAlso you will need to write additional code to examine the new text contents for the DataGrid control and save the changes if necessary. The SpellChecker only changes what you see on the screen, it will not change the DataGrid's data (which is saved in ViewState) for you. Thanks!
|