This is a migrated thread and some comments may be shown as answers.

Spell check within a ListView

1 Answer 58 Views
Spell
This is a migrated thread and some comments may be shown as answers.
Jim
Top achievements
Rank 1
Jim asked on 22 Feb 2012, 08:05 PM
I'm trying to execute a spell check from a textbox within a ListView whenever the user submits a new record. 
Is this even possible?  My code is as follows:

    Private Sub lvStrengths_ItemInserting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ListViewInsertEventArgs) Handles lvStrengths.ItemInserting
        Dim item As ListViewItem = lvStrengths.InsertItem
        Dim tb As TextBox = item.FindControl("tbStrengths")
        Dim rsc As RadSpell = item.FindControl("rscStrengths")
        odsStrengths.InsertParameters(0).DefaultValue = _RptNum
        odsStrengths.InsertParameters(1).DefaultValue = tb.Text
        rsc.ControlToCheck = tb.Text
        rsc.ButtonType = ButtonType.None

    End Sub

Thanks very much!

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 27 Feb 2012, 01:55 PM
Hello,

Note that RadSpell does not offer out-of-the box this custom feature and we do not support it officially.

You can see the following forum threads which could be helpful for your scenario:
Fire RadSpell When Click Save Button
and
Spell check for grid.

Kind regards,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Spell
Asked by
Jim
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or