This question is locked. New answers and comments are not allowed.
Is it possible to use the RadRichTextBox as a cell within my RadGridView? Specifically, I have a RadGridView with several columns, and I want the last column to be the RadRichTextBox. Currently, my Silverlight application has a simple textbox as the last column in the grid. My customer has asked that I add rich text formatting to the last cell in each row, so I figured I would use the RadRichTextBox.
Here is the code I have for my current textbox in the last column of the RadGridView:
<telerik:GridViewDataColumn Header="Notes" DataMemberBinding="{Binding notes, Mode=TwoWay, Converter={StaticResource DescriptionConverter}}"> <telerik:GridViewDataColumn.CellEditTemplate> <DataTemplate> <TextBox AcceptsReturn="True" TextWrapping="Wrap" Text="{Binding notes, Mode=TwoWay}" Height="50" Width="200" VerticalContentAlignment="Top" HorizontalContentAlignment="Left" VerticalScrollBarVisibility="Auto"/> </DataTemplate> </telerik:GridViewDataColumn.CellEditTemplate> </telerik:GridViewDataColumn>If you know how to do this, please step me through the process, post a link to an example of the RadRichTextBox being used in a RadGridView, or post the code for how this is done.
Thanks.