This question is locked. New answers and comments are not allowed.
I'm trying to use a richtextbox control inside a gridview column. I cannot get anything to databind to the richtextbox control, it is always empty. Can you advise? Thank you.
<
telerikGrid:GridViewColumn Header="Description">
<telerikGrid:GridViewColumn.CellTemplate>
<DataTemplate>
<telerik:RadRichTextBox x:Name="MessageRichTextBox" Height="150" Width="350" HorizontalAlignment="Left" BorderBrush="Black" BorderThickness="1">
<telerik:RadRichTextBox.Resources>
<documentsXaml:XamlDataProvider x:Key="HtmlProvider" RichTextBox="{Binding ElementName=MessageRichTextBox}" Xaml="{Binding Description, Mode=TwoWay}" >
</documentsXaml:XamlDataProvider>
</telerik:RadRichTextBox.Resources>
</telerik:RadRichTextBox>
</DataTemplate>
</telerikGrid:GridViewColumn.CellTemplate>
</telerikGrid:GridViewColumn>