This question is locked. New answers and comments are not allowed.
So I am trying to set it up so I can toggle spellcheck from a Menu, rather than from the ribbon bar. I have this working for the RadRichTextBox bold, italics, underline, copy, cut, and paste methods, but it doesn't work for the ToggleSpellCheckingCommand.
For example, my code reads
The Bold, Italic, and Underline work, but the SpellChecking doesn't. Any ideas?
For example, my code reads
<telerikNavigation:RadMenuItem Header="Format"> <telerikNavigation:RadMenuItem x:Name="_boldMenu" DataContext="{Binding ElementName=_rrtb}" Command="{Binding ToggleBoldCommand}" Header="Bold" /> <telerikNavigation:RadMenuItem x:Name="_italicMenu" DataContext="{Binding ElementName=_rrtb}" Command="{Binding ToggleItalicCommand}" Header="Italic" /> <telerikNavigation:RadMenuItem x:Name="_underlineMenu" DataContext="{Binding ElementName=_rrtb}" Command="{Binding ToggleUnderlineCommand}" Header="Underline" /></telerikNavigation:RadMenuItem><telerikNavigation:RadMenuItem Header="Tools"> <telerikNavigation:RadMenuItem x:Name="_spellCheckMenu" DataContext="{Binding ElementName=_rrtb}" Command="{Binding ToggleSpellCheckingCommand}" Header="SpellCheck" />The Bold, Italic, and Underline work, but the SpellChecking doesn't. Any ideas?
