I would like to catch TextChanged from RadRichTextBox, i checked and that event did not exist. So i tried to use DocumentChanged, but it did not fire too, when im typing text in rtb.
01.<telerik:RadRichTextBox HorizontalScrollBarVisibility="Auto" MinHeight="80" VerticalScrollBarVisibility="Auto"02. x:Name="Rtb"03. Background="White" AcceptsTab="True" Loaded="Rtb_Loaded" FontSize="12"04. IsEnabled="{Binding CanEdit, UpdateSourceTrigger=PropertyChanged}">05. <i:Interaction.Triggers>06. <i:EventTrigger EventName="DocumentChanged">07. <i:InvokeCommandAction Command="{Binding DocumentChangedCommand}"08. CommandParameter="{Binding ElementName=Rtb, Path=Document}" />09. </i:EventTrigger>10. </i:Interaction.Triggers>11. </telerik:RadRichTextBox>