Hello Tanya,
Thanks for your answers.
The first two worked for me, for the third answer I rather check programmatically if there are spelling errors, but I guess there's no work around for this?
For the last answer, when I hit enter in the RadRichTextBox, a new line is created and the cursor goes to the next line, only the cursor is not blinking anymore. So its not possible to start typing right away, I need to click in the RadRichTextBox to type on the new line? How can I fix this?
Finally, I have also a problem with the tabindex of the RadRichTextBox, for some reason the value thats set is not working?
I created this small example and that has the same problem, control will move from the textbox to the button and then to the RadRichTextBox? I am using version 2015.1.401.45.
<Grid> <Grid.RowDefinitions> <RowDefinitionHeight="Auto"/> <RowDefinitionHeight="Auto"/> <RowDefinitionHeight="Auto"/> <RowDefinitionHeight="Auto"/> <RowDefinitionHeight="Auto"/> </Grid.RowDefinitions> <TextBoxGrid.Row="0"HorizontalAlignment="Center"VerticalAlignment="Center" MaxHeight="25"Width="120"Margin="30"TabIndex="1"/> <telerik:RadRichTextBoxGrid.Row="1"Width="200"Height="100"TabIndex="2"/> <ButtonGrid.Row="3"Width="140"HorizontalAlignment="Center"VerticalAlignment="Center" Content="Test button"TabIndex="3"/> </Grid>
Marcel