I have implemented the Q1 2014 Silverlight UI controls, and now my RadRichTextBox'es which were displaying data from the db via the TxtDataProvider no longer display the data. Do I need to use a different provider or something with this release?
My XAML is below and I have attached a screenshot.
Thanks
<telerikTxt:TxtDataProvider Name="TxtDataProvider" RichTextBox="{Binding ElementName=ScheduleRTB}"
Text="{Binding Path=CertificateUpdateableItems.WaiverSchedule, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
SetupDocument="TxtDataProvider_SetupDocument">
</telerikTxt:TxtDataProvider>
<telerik:RadRichTextBox x:Name="ScheduleRTB" HorizontalAlignment="Stretch"
VerticalAlignment="Stretch" FontSize="13"
DocumentInheritsDefaultStyleSettings="True"
FontFamily="Arial"
IsSpellCheckingEnabled="True"
IsContextMenuEnabled="True" Loaded="ScheduleRTB_Loaded"
IsReadOnly="{Binding Path=EditWaiverIsReadOnly}"
LayoutMode="Flow"
Margin="18,0,86,5"
VerticalScrollBarVisibility="Auto"
Background="White" IsEnabled="True" Height="100" Grid.Row="1"
Grid.ColumnSpan="5"
IsFocusable="True"
GotFocus="ScheduleRTB_GotFocus"
LostFocus="ScheduleRTB_LostFocus"
Grid.RowSpan="3"
TabIndex="15"
DocumentContentChanged="WaiverItemsRichTextBox_DocumentContentChanged"
TabNavigation="Cycle">
<telerik:RadRichTextBox.Resources>
<Style TargetType="telerik:DocumentWebLayoutPresenter">
<Setter Property="Background" Value="Transparent" />
</Style>
<Style TargetType="telerik:DocumentPrintLayoutPresenter">
<Setter Property="Background" Value="Transparent" />
</Style>
</telerik:RadRichTextBox.Resources>
</telerik:RadRichTextBox>
My XAML is below and I have attached a screenshot.
Thanks
<telerikTxt:TxtDataProvider Name="TxtDataProvider" RichTextBox="{Binding ElementName=ScheduleRTB}"
Text="{Binding Path=CertificateUpdateableItems.WaiverSchedule, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
SetupDocument="TxtDataProvider_SetupDocument">
</telerikTxt:TxtDataProvider>
<telerik:RadRichTextBox x:Name="ScheduleRTB" HorizontalAlignment="Stretch"
VerticalAlignment="Stretch" FontSize="13"
DocumentInheritsDefaultStyleSettings="True"
FontFamily="Arial"
IsSpellCheckingEnabled="True"
IsContextMenuEnabled="True" Loaded="ScheduleRTB_Loaded"
IsReadOnly="{Binding Path=EditWaiverIsReadOnly}"
LayoutMode="Flow"
Margin="18,0,86,5"
VerticalScrollBarVisibility="Auto"
Background="White" IsEnabled="True" Height="100" Grid.Row="1"
Grid.ColumnSpan="5"
IsFocusable="True"
GotFocus="ScheduleRTB_GotFocus"
LostFocus="ScheduleRTB_LostFocus"
Grid.RowSpan="3"
TabIndex="15"
DocumentContentChanged="WaiverItemsRichTextBox_DocumentContentChanged"
TabNavigation="Cycle">
<telerik:RadRichTextBox.Resources>
<Style TargetType="telerik:DocumentWebLayoutPresenter">
<Setter Property="Background" Value="Transparent" />
</Style>
<Style TargetType="telerik:DocumentPrintLayoutPresenter">
<Setter Property="Background" Value="Transparent" />
</Style>
</telerik:RadRichTextBox.Resources>
</telerik:RadRichTextBox>