Telerik Forums
UI for Silverlight Forum
2 answers
55 views
Hello,

We're using spellchecking on a RadRichTextBox using an English / British dictionary. Based on the examples I've seen I'm under the impression that it should be enough to add the dictionary to the spellchecker associated with with RadRichTextBox.

However whenever the user is typing in these controls it uses the EN-US dictionary rather than the EN-GB one. The only way to get the RichTextBox to use the EN-GB dictionary is to set the spellchecker explicitely, ie:

richTextBox.SpellChecker = ControlSpellCheckersManager.GetControlSpellChecker(typeof(RadRichTextBox)).SpellChecker;

Is this intended to work this way ?

Cheers,
V vls
Top achievements
Rank 1
 answered on 13 Aug 2017
1 answer
39 views

we downloaded 7 language dictionaries for use in our program.  We upgraded to the 2013 q1 controls a while back and have been getting an error when loading the en-US.tdf.  It loads just fine, but when we add the dictionary to the editor via AddDictionary, it errors out.  Has the format of the dictionary changed since about 2012?

 

 

Mihail
Telerik team
 answered on 11 Feb 2016
1 answer
7 views
Hi All,

Currently i am working on a project in which i have to implement spell check functionality for a textbox, Version of telerik used is 2011 and in that version we dont have RadSpellCheck(which is present in 2013). So is there a way i can implement Spell Check for a textbox in my application using telerik DLL's available for 2011 only.

Thanks in Advance,
Rahul Sharma 
Missing User
 answered on 17 Mar 2014
2 answers
76 views

Is there an example of setting the SpellCheckingWindowsStyle  for the RadSpellChecker?  Im using example in another thread of spell checking multiple text boxes..  My code is as follows - Im just not sure how to style the spell checker and what properties are available. Can I have an example?

 

public partial class MainPage : UserControl
{
    public MainPage()
    {
        InitializeComponent();
        RadSpellChecker.SpellCheckingCompleted += spellCheckingCompleted;
 
        textBoxes = new List<TextBox>();
        textBoxes.Add(this.textBox1);
        textBoxes.Add(this.textBox2);
        textBoxes.Add(this.textBox3);
    }
 
    int i;
    List<TextBox> textBoxes;
 
    private void button1_Click(object sender, RoutedEventArgs e)
    {
        RadSpellChecker.WindowSettings.ShowAlertWhenSpellCheckingCompleted = false;
        RadSpellChecker.Check(this.textBox1, SpellCheckingMode.AllAtOnce);
    }
 
    private void spellCheckingCompleted(object sender, SpellCheckingCompletedEventArgs args)
    {
        if (i == 2)
        {
            i = 0;
            return;
        }
 
        i++;
        RadSpellChecker.Check(this.textBoxes[i], SpellCheckingMode.AllAtOnce);
 
    }
}
Todor
Telerik team
 answered on 21 Feb 2014
14 answers
152 views
How can I have it check more than one Textbox at a time?  The current approach seems rather inefficient for situations where I have more than one Textbox to check.  This also seems like a very common Use Case.
Petya
Telerik team
 answered on 19 Feb 2014
19 answers
241 views

Is there a way to spell check custom controls for the following?

1.       Check for all capital letters (e.g A thing of BEAUTY is a joy forever).

2.       Check words that start with a capital (e.g a thing of beauty is a Joy Forever).

3.       Check words with numbers (e.g Its gr8 to see you here).

4.       Check for repeated words (e.g Paris in the the triangle).

Please let me know if any of these is possible.

Petya
Telerik team
 answered on 25 Nov 2013
3 answers
54 views
Hi,

When I call the following code, I get a popup window.   

RadSpellChecker.Check(radRichTextBox, SpellCheckingMode.WordByWord);

However, user has access to controls behind this window.  Is it possible to display this as modal window so that user cannot do anything until this window is closed?

Thank you in advance,

Michael

Petya
Telerik team
 answered on 13 Nov 2013
1 answer
101 views
I am trying to add RadSpellChecker to our SilverLight application which is using MVVM.

I have added these assemblies to the project: Telerik.Windows.Documents.Proofing,Telerik.Windows.Documents.Proofing.En-US

The textbox "Text" property on my View is bound to Text="{Binding Model.Description}"
The Button "Command" is Command="{Binding Model.SpellcheckCommand}"

In my ViewModel I have added these namespaces
using Telerik.Windows.Documents;
using Telerik.Windows.Controls;

In the SpellChecker method in the ViewModel I have the following but the RadSpellChecker says I'm missing an assembly reference.
        public void SpellCheck()
        {
            Telerik.Windows.Controls.RadSpellChecker.Check(Model.Description, SpellCheckingMode.WordByWord);
        }

Do I have to call RadSpellChecker from the View's code behind instead?
Petya
Telerik team
 answered on 06 Sep 2013
1 answer
41 views
Hello,
we are using Rad spellChecker. we are unable to get suggestions for Arabic and Hebrew words.
is Rad spell works for Arabic? 

please , anyone help me..

Thanks
Chandrashekar
Petya
Telerik team
 answered on 30 Aug 2013
7 answers
66 views
Hello,

I need to customize the SpellCheckingDialog to remove the "Add To Dictionary" button, and the "Edit Custom Dictionary" button.  How do I do that?  We want to force users to use the default dictionaries only.

Thanks,
Rob
Anna
Telerik team
 answered on 03 Jul 2013
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?